diff --git a/Cargo.lock b/Cargo.lock index a317b433da..b0d72db1e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -785,7 +785,7 @@ version = "1.0.15" dependencies = [ "bholdus-support", "common-primitives", - "enumflags2", + "enumflags2 0.7.5", "frame-benchmarking", "frame-support", "frame-system", @@ -904,7 +904,7 @@ name = "bholdus-tokens" version = "1.0.15" dependencies = [ "bholdus-support", - "enumflags2", + "enumflags2 0.7.5", "frame-benchmarking", "frame-support", "frame-system", @@ -1962,7 +1962,16 @@ version = "0.6.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "83c8d82922337cd23a15f88b70d8e4ef5f11da38dd7cdb55e84dd5de99695da0" dependencies = [ - "enumflags2_derive", + "enumflags2_derive 0.6.4", +] + +[[package]] +name = "enumflags2" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e75d4cd21b95383444831539909fbb14b9dc3fdceb2a6f5d36577329a1f55ccb" +dependencies = [ + "enumflags2_derive 0.7.4", "serde", ] @@ -1977,6 +1986,17 @@ dependencies = [ "syn", ] +[[package]] +name = "enumflags2_derive" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f58dc3c5e468259f19f2d46304a6b28f1c3d034442e14b322d2b850e36f6d5ae" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + [[package]] name = "env_logger" version = "0.7.1" @@ -5558,7 +5578,7 @@ name = "pallet-identity" version = "4.0.0-dev" source = "git+https://github.com/BHONetwork/substrate.git?branch=bho-polkadot-v0.9.18#6c7c3e3e3cb49e1910b2f0fc94c8e5ad2dd72dd4" dependencies = [ - "enumflags2", + "enumflags2 0.6.4", "frame-benchmarking", "frame-support", "frame-system", @@ -6989,7 +7009,7 @@ version = "1.0.15" dependencies = [ "bholdus-currencies", "common-primitives", - "enumflags2", + "enumflags2 0.7.5", "frame-benchmarking", "frame-support", "frame-system", diff --git a/pallets/non-fungible-token/Cargo.toml b/pallets/non-fungible-token/Cargo.toml index ef5cf3f259..d75e4f983c 100644 --- a/pallets/non-fungible-token/Cargo.toml +++ b/pallets/non-fungible-token/Cargo.toml @@ -17,7 +17,7 @@ features = ['derive'] version = '2.0.1' [dependencies.enumflags2] -version = '0.6.3' +version = '0.7.5' [dependencies.serde] optional = true diff --git a/pallets/tokens/Cargo.toml b/pallets/tokens/Cargo.toml index 9ac6166831..5aa1e28482 100644 --- a/pallets/tokens/Cargo.toml +++ b/pallets/tokens/Cargo.toml @@ -11,7 +11,7 @@ version = "1.0.15" [dependencies] -enumflags2 = { version = "0.6.2" } +enumflags2 = { version = "0.7.5" } [dependencies.codec] default-features = false diff --git a/runtime/chain-extension/Cargo.toml b/runtime/chain-extension/Cargo.toml index fbe543503e..192e8ebdb3 100644 --- a/runtime/chain-extension/Cargo.toml +++ b/runtime/chain-extension/Cargo.toml @@ -10,7 +10,7 @@ version = "1.0.15" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -enumflags2 = { version = "0.6.2" } +enumflags2 = { version = "0.7.5" } smallvec = "1.8.0" [dependencies.codec]