Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshOrndorff committed Jul 1, 2023
1 parent 2604e52 commit 309e29d
Show file tree
Hide file tree
Showing 9 changed files with 70 additions and 70 deletions.
54 changes: 27 additions & 27 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,41 +16,41 @@ name = "node-template"
[dependencies]
clap = { version = "4.0.29", features = ["derive"] }

sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-network = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-network = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }

# These dependencies are used for the node template's RPCs
jsonrpsee = { version = "0.16.2", features = ["server"] }
sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }
sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }

# Local Dependencies
node-template-runtime = { package = "tuxedo-template-runtime", path = "../tuxedo-template-runtime" }

[build-dependencies]
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }

[features]
default = []
14 changes: 7 additions & 7 deletions tuxedo-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ parity-util-mem = { version = '0.12.0', optional = true }
aggregator = { path = "aggregator" }
derive-no-bound = { path = "no_bound" }

sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["force-debug"] }
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["with-tracing"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false, features = ["force-debug"] }
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false, features = ["with-tracing"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[dev-dependencies]
array-bytes = "6.0.0"
Expand Down
38 changes: 19 additions & 19 deletions tuxedo-template-runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,26 +13,26 @@ parity-scale-codec = { version = '3.4.0', default-features = false, features = [
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
parity-util-mem = { version = '0.12.0', optional = true }

sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["force-debug"] }
sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["with-tracing"] }
sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false, features = ["force-debug"] }
sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false, features = ["with-tracing"] }
sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

# These were added for Aura / Grandpa API support
hex-literal = "0.4.1"
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

# Tuxedo Core and Pieces
tuxedo-core = { path = '../tuxedo-core', default-features = false }
Expand All @@ -43,10 +43,10 @@ kitties = { path = '../wardrobe/kitties', default-features = false }
runtime-upgrade = { path = '../wardrobe/runtime_upgrade', default-features = false }

[build-dependencies]
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-07" }

[dev-dependencies]
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false }
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false }

[features]
default = ["std"]
Expand Down
8 changes: 4 additions & 4 deletions wallet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ futures = "0.3"
env_logger = "0.10.0"
log = "0.4.17"

sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07" }
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07" }
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07" }
sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07" }
2 changes: 1 addition & 1 deletion wardrobe/amoeba/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 deletions wardrobe/kitties/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions wardrobe/money/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[features]
default = ["std"]
Expand Down
6 changes: 3 additions & 3 deletions wardrobe/poe/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[features]
default = ["std"]
Expand Down
8 changes: 4 additions & 4 deletions wardrobe/runtime_upgrade/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
serde = { version = "1.0", optional = true, features = ["derive"] }
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-07", default_features = false}

[features]
default = ["std"]
Expand Down

0 comments on commit 309e29d

Please sign in to comment.