1[package]2name = "rmrk-rpc"3version = "0.0.1"4license = ""5edition = "2021"67[dependencies]8codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }9sp-core = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }10sp-std = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }11sp-api = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }12sp-runtime = { default-features = false, git = 'https://github.com/paritytech/substrate', branch = 'polkadot-v0.9.24' }13serde = { version = "1.0.130", default-features = false, features = ["derive"] }14rmrk-traits = { default-features = false, path = "../rmrk-traits" }1516[features]17default = ["std"]18std = [19 "codec/std",20 "sp-core/std",21 "sp-std/std",22 "sp-api/std",23 "sp-runtime/std",24 "serde/std",25 "rmrk-traits/std",26]