Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dependency updating #554

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 3 additions & 20 deletions contracts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
[workspace]
resolver = "2"

# Keep in the lexicographic order!
# Remove a member if it's used as a dependency in the workspace.

members = [
"battle",
"battle/warrior/wasm",
Expand Down Expand Up @@ -54,7 +56,6 @@ publish = false

battleship-bot.path = "battleship/bot"
rmrk-catalog.path = "rmrk/catalog"
syndote-player.path = "syndote/player"
tamagotchi.path = "tamagotchi"

# Local states
Expand All @@ -67,21 +68,16 @@ tamagotchi-battle-state.path = "tamagotchi-battle/state"
# Keep in the lexicographic order!

battleship-io.path = "battleship/io"
car-races-io.path = "car-races/io"
multi-token-io.path = "multi-token/io"
rmrk-catalog-io.path = "rmrk/catalog/io"
rmrk-io.path = "rmrk/io"
rmrk-resource-io.path = "rmrk/resource/io"
rock-paper-scissors-io.path = "rock-paper-scissors/io"
syndote-io.path = "syndote/io"
syndote-player-io.path = "syndote/player/io"
tamagotchi-io.path = "tamagotchi/io"
tamagotchi-battle-io.path = "tamagotchi-battle/io"
tequila-train-io.path = "tequila-train/io"
w3bstreaming-io.path = "w3bstreaming/io"

# Local libraries
# Keep in the lexicographic order!

rmrk-types.path = "rmrk/types"

# Gear
Expand Down Expand Up @@ -109,22 +105,9 @@ primitive-types = { version = "0.12", default-features = false }
sp-core = { version = "21.0.0", default-features = false, features = ["full_crypto", "sp-externalities"] }
sp-core-hashing = { version = "10", default-features = false }
tokio = "1"
blake2-rfc = "0.2"
hex-literal = "0.4"
hex = { version = "0.4", default-features = false }
async-trait = "0.1"
rand = { version = "0.8", default-features = false }
rand_xoshiro = "0.6"
indexmap = { version = "2", default-features = false }
ahash = { version = "0.8", default-features = false, features = ["no-rng"] }
schnorrkel = { version = "0.10", default-features = false, features = ["u64_backend"] }
syn = { version = "2", default-features = false }
quote = "1"
clap = { version = "4", default-features = false, features = ["std"] }
enum-iterator = "1"
xshell = "0.2"
anyhow = "1"
sha2 = "0.10"
num-traits = { version = "0.2", default-features = false }
scale-info = { version = "2", default-features = false }
parity-scale-codec = { version = "3", default-features = false }
2 changes: 1 addition & 1 deletion contracts/battle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ battle-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
gtest.workspace = true
gstd.workspace = true
tokio = { version = "1.39", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[build-dependencies]
battle-app = { path = "app" }
Expand Down
2 changes: 1 addition & 1 deletion contracts/car-races/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ gtest.workspace = true
car-races = { path = ".", features = ["wasm-binary"] }
car-races-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
2 changes: 1 addition & 1 deletion contracts/concert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ extended-vmt.workspace = true
concert = { path = ".", features = ["wasm-binary"] }
concert-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }
extended-vmt-client.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion contracts/galactic-express/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sails-idl-gen.workspace = true
galactic-express = { path = ".", features = ["wasm-binary"] }
sails-rs = { workspace = true, features = ["gtest"] }
galactic-express-client = { path = "client" }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }
gstd.workspace = true

[features]
Expand Down
2 changes: 1 addition & 1 deletion contracts/galactic-express/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ edition = "2021"
[dependencies]
sails-rs.workspace = true
gstd = { workspace = true, features = ["debug"] }
num-traits.workspace = true
num-traits = { version = "0.2", default-features = false }
4 changes: 2 additions & 2 deletions contracts/nft-marketplace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ nft-marketplace = { path = ".", features = ["wasm-binary"] }
nft-marketplace-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { workspace = true, features = ["rt", "macros"] }
extended-vft = { git = "https://github.com/gear-foundation/standards/"}
extended-vnft = { git = "https://github.com/gear-foundation/standards/"}
extended-vft.workspace = true
extended-vnft.workspace = true
extended-vnft-client.workspace = true
extended-vft-client.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion contracts/oracle/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sails-idl-gen.workspace = true
oracle = { path = ".", features = ["wasm-binary"] }
oracle-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
2 changes: 1 addition & 1 deletion contracts/oracle/randomness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sails-idl-gen.workspace = true
randomness = { path = ".", features = ["wasm-binary"] }
randomness-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
2 changes: 1 addition & 1 deletion contracts/syndote/app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,4 @@ sails-rs = { workspace = true, features = ["gtest"] }
[dev-dependencies]
gclient.workspace = true
syndote = { path = "../wasm" }
tokio = "1"
tokio.workspace = true
2 changes: 1 addition & 1 deletion contracts/tequila-train/io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ publish.workspace = true
[dependencies]
gmeta.workspace = true
gstd.workspace = true
enum-iterator.workspace = true
parity-scale-codec.workspace = true
scale-info.workspace = true
enum-iterator = "1"
2 changes: 1 addition & 1 deletion contracts/tic-tac-toe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sails-idl-gen.workspace = true
tic-tac-toe = { path = ".", features = ["wasm-binary"] }
tic-tac-toe-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
2 changes: 1 addition & 1 deletion contracts/upgrade-proxy/counter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sails-idl-gen.workspace = true
counter = { path = ".", features = ["wasm-binary"] }
counter-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
2 changes: 1 addition & 1 deletion contracts/upgrade-proxy/upgrade-proxy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ sails-idl-gen.workspace = true
proxy = { path = ".", features = ["wasm-binary"] }
proxy-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }
counter = { path ="../counter", features = ["wasm-binary"] }
counter-client = { path = "../counter/client" }

Expand Down
2 changes: 1 addition & 1 deletion contracts/vara-man/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sails-idl-gen.workspace = true
vara-man = { path = ".", features = ["wasm-binary"] }
vara-man-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }
gtest.workspace = true
extended-vft-client.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion contracts/varatube/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ sails-idl-gen.workspace = true
varatube = { path = ".", features = ["wasm-binary"] }
varatube-client = { path = "client" }
sails-rs = { workspace = true, features = ["gtest"] }
tokio = { version = "1.41", features = ["rt", "macros"] }
tokio = { workspace = true, features = ["rt", "macros"] }

[features]
wasm-binary = []
Loading