1[package]2edition = "2021"3license = ""4name = "rmrk-rpc"5version = "0.0.2"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.2.2", default-features = false, features = ["derive"] }9rmrk-traits = { default-features = false, path = "../rmrk-traits" }10serde = { version = "1.0.130", default-features = false, features = ["derive"] }11sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1415[features]16default = ["std"]17std = ["codec/std", "rmrk-traits/std", "serde/std", "sp-api/std", "sp-runtime/std", "sp-std/std"]