Skip to content

Commit

Permalink
Add dev tag to version - v0.9.81-devversion = "0.9.81"
Browse files Browse the repository at this point in the history
  • Loading branch information
balqaasem committed Feb 23, 2024
1 parent f304831 commit 6eebe38
Show file tree
Hide file tree
Showing 14 changed files with 585 additions and 585 deletions.
2 changes: 1 addition & 1 deletion blockchain/modules/asset-registry/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "module-asset-registry"
version = "0.9.81"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

Expand Down
104 changes: 52 additions & 52 deletions blockchain/modules/currencies/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,52 +1,52 @@
[package]
name = "module-currencies"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-io = { workspace = true }
sp-std = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }

orml-traits = { workspace = true }

primitives = { workspace = true }
module-support = { workspace = true }

[dev-dependencies]
serde_json = { workspace = true, features = ["std"] }
hex = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
sp-core = { workspace = true, features = ["std"] }
pallet-balances = { workspace = true, features = ["std"] }
pallet-timestamp = { workspace = true, features = ["std"] }
orml-tokens = { workspace = true, features = ["std"] }
module-evm = { workspace = true, features = ["std"] }
module-evm-bridge = { workspace = true, features = ["std"] }

[features]
default = ["std"]
std = [
"parity-scale-codec/std",
"frame-support/std",
"frame-system/std",
"orml-traits/std",
"primitives/std",
"scale-info/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"module-support/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]
[package]
name = "module-currencies"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
scale-info = { workspace = true }
sp-core = { workspace = true }
sp-runtime = { workspace = true }
sp-io = { workspace = true }
sp-std = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }

orml-traits = { workspace = true }

primitives = { workspace = true }
module-support = { workspace = true }

[dev-dependencies]
serde_json = { workspace = true, features = ["std"] }
hex = { workspace = true, features = ["std"] }
hex-literal = { workspace = true }
sp-core = { workspace = true, features = ["std"] }
pallet-balances = { workspace = true, features = ["std"] }
pallet-timestamp = { workspace = true, features = ["std"] }
orml-tokens = { workspace = true, features = ["std"] }
module-evm = { workspace = true, features = ["std"] }
module-evm-bridge = { workspace = true, features = ["std"] }

[features]
default = ["std"]
std = [
"parity-scale-codec/std",
"frame-support/std",
"frame-system/std",
"orml-traits/std",
"primitives/std",
"scale-info/std",
"sp-core/std",
"sp-io/std",
"sp-runtime/std",
"sp-std/std",
"module-support/std",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]
40 changes: 20 additions & 20 deletions blockchain/modules/currencies/runtime-api/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "module-currencies-runtime-api"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
sp-runtime = { workspace = true }
sp-api = { workspace = true }
sp-std = { workspace = true }
sp-core = { workspace = true }

[features]
default = ["std"]
std = [
"sp-runtime/std",
"sp-api/std",
"sp-std/std",
"sp-core/std",
]
[package]
name = "module-currencies-runtime-api"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
sp-runtime = { workspace = true }
sp-api = { workspace = true }
sp-std = { workspace = true }
sp-core = { workspace = true }

[features]
default = ["std"]
std = [
"sp-runtime/std",
"sp-api/std",
"sp-std/std",
"sp-core/std",
]
110 changes: 55 additions & 55 deletions blockchain/modules/evm-accounts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,55 +1,55 @@
[package]
name = "module-evm-accounts"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
libsecp256k1 = { workspace = true, features = ["hmac", "static-context"], optional = true }
scale-info = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

orml-traits = { workspace = true }
primitives = { workspace = true }
module-support = { workspace = true }
module-evm-utility-macro = { workspace = true }

[dev-dependencies]
pallet-balances = { workspace = true, features = ["std"] }
orml-currencies = { workspace = true, features = ["std"] }
orml-tokens = { workspace = true, features = ["std"] }

[features]
default = ["std"]
std = [
"parity-scale-codec/std",
"libsecp256k1",
"libsecp256k1/std",
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-io/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"primitives/std",
"orml-traits/std",
"module-support/std",
]
runtime-benchmarks = [
"libsecp256k1/hmac",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]
[package]
name = "module-evm-accounts"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
parity-scale-codec = { workspace = true }
libsecp256k1 = { workspace = true, features = ["hmac", "static-context"], optional = true }
scale-info = { workspace = true }

frame-support = { workspace = true }
frame-system = { workspace = true }
sp-core = { workspace = true }
sp-io = { workspace = true }
sp-runtime = { workspace = true }
sp-std = { workspace = true }

orml-traits = { workspace = true }
primitives = { workspace = true }
module-support = { workspace = true }
module-evm-utility-macro = { workspace = true }

[dev-dependencies]
pallet-balances = { workspace = true, features = ["std"] }
orml-currencies = { workspace = true, features = ["std"] }
orml-tokens = { workspace = true, features = ["std"] }

[features]
default = ["std"]
std = [
"parity-scale-codec/std",
"libsecp256k1",
"libsecp256k1/std",
"scale-info/std",
"sp-core/std",
"sp-runtime/std",
"sp-io/std",
"sp-std/std",
"frame-support/std",
"frame-system/std",
"primitives/std",
"orml-traits/std",
"module-support/std",
]
runtime-benchmarks = [
"libsecp256k1/hmac",
"frame-support/runtime-benchmarks",
"frame-system/runtime-benchmarks",
"sp-runtime/runtime-benchmarks",
]
try-runtime = [
"frame-support/try-runtime",
"frame-system/try-runtime",
]
64 changes: 32 additions & 32 deletions blockchain/modules/evm-utility/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,32 +1,32 @@
[package]
name = "module-evm-utility"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
sha3 = { workspace = true }

sp-std = { workspace = true }

evm = { version = "0.41.1", default-features = false, features = ["with-codec"] }
evm-gasometer = { version = "0.41.0", default-features = false }
evm-runtime = { version = "0.41.0", default-features = false }
ethereum = { version = "0.15.0", default-features = false, features = ["with-codec"] }

[features]
default = ["std"]
std = [
"sha3/std",
"sp-std/std",
"evm/std",
"evm/with-serde",
"evm-runtime/std",
"evm-gasometer/std",
"ethereum/with-serde",
]
tracing = [
"evm/tracing",
"evm-gasometer/tracing",
"evm-runtime/tracing",
]
[package]
name = "module-evm-utility"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

[dependencies]
sha3 = { workspace = true }

sp-std = { workspace = true }

evm = { version = "0.41.1", default-features = false, features = ["with-codec"] }
evm-gasometer = { version = "0.41.0", default-features = false }
evm-runtime = { version = "0.41.0", default-features = false }
ethereum = { version = "0.15.0", default-features = false, features = ["with-codec"] }

[features]
default = ["std"]
std = [
"sha3/std",
"sp-std/std",
"evm/std",
"evm/with-serde",
"evm-runtime/std",
"evm-gasometer/std",
"ethereum/with-serde",
]
tracing = [
"evm/tracing",
"evm-gasometer/tracing",
"evm-runtime/tracing",
]
28 changes: 14 additions & 14 deletions blockchain/modules/evm-utility/macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "module-evm-utility-macro"
version = "0.9.81"
authors = ["Setheum Labs"]
edition = "2021"

[lib]
proc-macro = true

[dependencies]
quote = { workspace = true }
syn = { workspace = true, features = ["full", "fold", "extra-traits", "visit"] }
proc-macro2 = { workspace = true }
module-evm-utility = { workspace = true, features = ["std"] }
[package]
name = "module-evm-utility-macro"
version = "0.9.81-dev"
authors = ["Setheum Labs"]
edition = "2021"

[lib]
proc-macro = true

[dependencies]
quote = { workspace = true }
syn = { workspace = true, features = ["full", "fold", "extra-traits", "visit"] }
proc-macro2 = { workspace = true }
module-evm-utility = { workspace = true, features = ["std"] }
Loading

0 comments on commit 6eebe38

Please sign in to comment.