1[package]2edition = "2021"3license = "GPLv3"4name = "up-pov-estimate-rpc"5version = "0.1.0"67[dependencies]8codec = { package = "parity-scale-codec", version = "3.1.2", default-features = false, features = ["derive"] }9scale-info = { version = "2.0.1", default-features = false, features = ["derive"] }10serde = { version = "1.0.130", features = ["derive"], default-features = false, optional = true }11sp-api = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }12sp-core = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }13sp-runtime = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }14sp-std = { default-features = false, git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }1516[features]17default = ["std"]18std = ["codec/std", "scale-info/std", "serde/std", "sp-api/std", "sp-core/std", "sp-runtime/std", "sp-std/std"]