From 1dea23dee26a56db9ad0dc2d2cbb089a6a9ecb9b Mon Sep 17 00:00:00 2001 From: Bryan Chen Date: Tue, 30 Mar 2021 21:08:27 +1300 Subject: [PATCH] update Cargo.toml --- Cargo.dev.toml | 2 ++ oracle/rpc/Cargo.toml | 4 +++- oracle/rpc/runtime-api/Cargo.toml | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.dev.toml b/Cargo.dev.toml index 62df286d2..2b30f836e 100644 --- a/Cargo.dev.toml +++ b/Cargo.dev.toml @@ -8,6 +8,8 @@ members = [ "currencies", "gradually-update", "oracle", + "oracle/rpc", + "oracle/rpc/runtime-api", "tokens", "traits", "utilities", diff --git a/oracle/rpc/Cargo.toml b/oracle/rpc/Cargo.toml index 9ab71dbee..d64349197 100644 --- a/oracle/rpc/Cargo.toml +++ b/oracle/rpc/Cargo.toml @@ -3,6 +3,8 @@ name = "orml-oracle-rpc" version = "0.4.1-dev" authors = ["Laminar Developers "] edition = "2018" +license = "Apache-2.0" +description = "RPC module for orml-oracle." [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0" } @@ -13,6 +15,6 @@ sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "rococo sp-api = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "rococo-v1" } -orml-oracle-rpc-runtime-api = { path = "runtime-api" } +orml-oracle-rpc-runtime-api = { path = "runtime-api", version = "0.4.1-dev" } funty = { version = "=1.1.0", default-features = false } # https://github.com/bitvecto-rs/bitvec/issues/105 diff --git a/oracle/rpc/runtime-api/Cargo.toml b/oracle/rpc/runtime-api/Cargo.toml index 3003f32f8..19edb53a2 100644 --- a/oracle/rpc/runtime-api/Cargo.toml +++ b/oracle/rpc/runtime-api/Cargo.toml @@ -3,6 +3,8 @@ name = "orml-oracle-rpc-runtime-api" version = "0.4.1-dev" authors = ["Laminar Developers "] edition = "2018" +license = "Apache-2.0" +description = "Runtime API module for orml-oracle-rpc." [dependencies] codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }