docs: add MSRV (#1712)
This commit is contained in:
parent
e034a8f979
commit
3926749213
|
@ -0,0 +1 @@
|
||||||
|
msrv = "1.62"
|
46
Cargo.toml
46
Cargo.toml
|
@ -1,16 +1,15 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers"
|
name = "ethers"
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
|
edition = "2021"
|
||||||
|
rust-version = "1.62"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2021"
|
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
documentation = "https://docs.rs/ethers"
|
documentation = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
description = """
|
description = "Complete Ethereum library and wallet implementation in Rust."
|
||||||
Complete Ethereum library and wallet implementation in Rust.
|
|
||||||
"""
|
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
|
@ -22,7 +21,7 @@ members = [
|
||||||
"ethers-middleware",
|
"ethers-middleware",
|
||||||
"ethers-etherscan",
|
"ethers-etherscan",
|
||||||
"ethers-solc",
|
"ethers-solc",
|
||||||
"examples/ethers-wasm",
|
"examples/ethers-wasm"
|
||||||
]
|
]
|
||||||
|
|
||||||
default-members = [
|
default-members = [
|
||||||
|
@ -33,7 +32,7 @@ default-members = [
|
||||||
"ethers-core",
|
"ethers-core",
|
||||||
"ethers-middleware",
|
"ethers-middleware",
|
||||||
"ethers-etherscan",
|
"ethers-etherscan",
|
||||||
"ethers-solc",
|
"ethers-solc"
|
||||||
]
|
]
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
|
@ -55,10 +54,7 @@ celo = [
|
||||||
"legacy"
|
"legacy"
|
||||||
]
|
]
|
||||||
|
|
||||||
legacy = [
|
legacy = ["ethers-core/legacy", "ethers-contract/legacy"]
|
||||||
"ethers-core/legacy",
|
|
||||||
"ethers-contract/legacy"
|
|
||||||
]
|
|
||||||
|
|
||||||
# individual features per sub-crate
|
# individual features per sub-crate
|
||||||
## core
|
## core
|
||||||
|
@ -66,8 +62,18 @@ eip712 = ["ethers-contract/eip712", "ethers-core/eip712"]
|
||||||
## providers
|
## providers
|
||||||
ws = ["ethers-providers/ws"]
|
ws = ["ethers-providers/ws"]
|
||||||
ipc = ["ethers-providers/ipc"]
|
ipc = ["ethers-providers/ipc"]
|
||||||
rustls = ["ethers-providers/rustls", "ethers-etherscan/rustls", "ethers-contract/rustls", "ethers-solc/rustls"]
|
rustls = [
|
||||||
openssl = ["ethers-providers/openssl", "ethers-etherscan/openssl", "ethers-contract/openssl", "ethers-solc/openssl"]
|
"ethers-providers/rustls",
|
||||||
|
"ethers-etherscan/rustls",
|
||||||
|
"ethers-contract/rustls",
|
||||||
|
"ethers-solc/rustls"
|
||||||
|
]
|
||||||
|
openssl = [
|
||||||
|
"ethers-providers/openssl",
|
||||||
|
"ethers-etherscan/openssl",
|
||||||
|
"ethers-contract/openssl",
|
||||||
|
"ethers-solc/openssl"
|
||||||
|
]
|
||||||
dev-rpc = ["ethers-providers/dev-rpc"]
|
dev-rpc = ["ethers-providers/dev-rpc"]
|
||||||
## signers
|
## signers
|
||||||
ledger = ["ethers-signers/ledger"]
|
ledger = ["ethers-signers/ledger"]
|
||||||
|
@ -93,11 +99,19 @@ ethers-solc = { version = "^0.17.0", default-features = false, path = "./ethers-
|
||||||
ethers-etherscan = { version = "^0.17.0", default-features = false, path = "./ethers-etherscan" }
|
ethers-etherscan = { version = "^0.17.0", default-features = false, path = "./ethers-etherscan" }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract", features = ["abigen", "eip712"] }
|
ethers-contract = { version = "^0.17.0", default-features = false, path = "./ethers-contract", features = [
|
||||||
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = ["ws"] }
|
"abigen",
|
||||||
|
"eip712"
|
||||||
|
] }
|
||||||
|
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = [
|
||||||
|
"ws"
|
||||||
|
] }
|
||||||
|
|
||||||
[target.'cfg(target_family = "unix")'.dev-dependencies]
|
[target.'cfg(target_family = "unix")'.dev-dependencies]
|
||||||
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = ["ws", "ipc"] }
|
ethers-providers = { version = "^0.17.0", default-features = false, path = "./ethers-providers", features = [
|
||||||
|
"ws",
|
||||||
|
"ipc"
|
||||||
|
] }
|
||||||
eyre = "0.6"
|
eyre = "0.6"
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
serde = { version = "1.0.124", features = ["derive"] }
|
serde = { version = "1.0.124", features = ["derive"] }
|
||||||
|
@ -106,13 +120,11 @@ tokio = { version = "1.18", features = ["macros", "rt-multi-thread"] }
|
||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
bytes = "1.2.1"
|
bytes = "1.2.1"
|
||||||
|
|
||||||
|
|
||||||
# profile for the wasm example
|
# profile for the wasm example
|
||||||
[profile.release.package.ethers-wasm]
|
[profile.release.package.ethers-wasm]
|
||||||
# Tell `rustc` to optimize for small code size.
|
# Tell `rustc` to optimize for small code size.
|
||||||
opt-level = "s"
|
opt-level = "s"
|
||||||
|
|
||||||
|
|
||||||
[[example]]
|
[[example]]
|
||||||
name = "abigen"
|
name = "abigen"
|
||||||
path = "examples/abigen.rs"
|
path = "examples/abigen.rs"
|
||||||
|
|
|
@ -2,8 +2,9 @@
|
||||||
name = "ethers-addressbook"
|
name = "ethers-addressbook"
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MIT OR Apache-2.0"
|
rust-version = "1.62"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Common Ethereum name to address mappings"
|
description = "Common Ethereum name to address mappings"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-contract"
|
name = "ethers-contract"
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
rust-version = "1.62"
|
||||||
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Smart contract bindings for the ethers-rs crate"
|
description = "Smart contract bindings for the ethers-rs crate"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
|
@ -20,18 +21,22 @@ serde = { version = "1.0.124", default-features = false }
|
||||||
serde_json = { version = "1.0.64", default-features = false }
|
serde_json = { version = "1.0.64", default-features = false }
|
||||||
thiserror = { version = "1.0", default-features = false }
|
thiserror = { version = "1.0", default-features = false }
|
||||||
once_cell = { version = "1.14.0" }
|
once_cell = { version = "1.14.0" }
|
||||||
pin-project = {version = "1.0.11", default-features = false }
|
pin-project = { version = "1.0.11", default-features = false }
|
||||||
futures-util = { version = "^0.3" }
|
futures-util = { version = "^0.3" }
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-middleware = { version = "^0.17.0", path = "../ethers-middleware" }
|
ethers-middleware = { version = "^0.17.0", path = "../ethers-middleware" }
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = ["ws"] }
|
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = [
|
||||||
|
"ws"
|
||||||
|
] }
|
||||||
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
ethers-signers = { version = "^0.17.0", path = "../ethers-signers" }
|
||||||
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen" }
|
ethers-contract-abigen = { version = "^0.17.0", path = "ethers-contract-abigen" }
|
||||||
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive" }
|
ethers-contract-derive = { version = "^0.17.0", path = "ethers-contract-derive" }
|
||||||
ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false, features = ["eip712"]}
|
ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false, features = [
|
||||||
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712"}
|
"eip712"
|
||||||
|
] }
|
||||||
|
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712" }
|
||||||
ethers-solc = { version = "^0.17.0", path = "../ethers-solc", default-features = false }
|
ethers-solc = { version = "^0.17.0", path = "../ethers-solc", default-features = false }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
name = "ethers-core"
|
name = "ethers-core"
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
|
rust-version = "1.62"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
description = "Core structures for the ethers-rs crate"
|
description = "Core structures for the ethers-rs crate"
|
||||||
|
|
|
@ -1,7 +1,11 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-etherscan"
|
name = "ethers-etherscan"
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
rust-version = "1.62"
|
||||||
|
authors = [
|
||||||
|
"Matthias Seitz <matthias.seitz@outlook.de>",
|
||||||
|
"Georgios Konstantopoulos <me@gakonst.com>"
|
||||||
|
]
|
||||||
license = "MIT OR Apache-2.0"
|
license = "MIT OR Apache-2.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-middleware"
|
name = "ethers-middleware"
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
rust-version = "1.62"
|
||||||
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Middleware implementations for the ethers-rs crate"
|
description = "Middleware implementations for the ethers-rs crate"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
|
@ -34,7 +35,7 @@ reqwest = { version = "0.11.11", default-features = false, features = ["json", "
|
||||||
url = { version = "2.3.1", default-features = false }
|
url = { version = "2.3.1", default-features = false }
|
||||||
|
|
||||||
serde_json = { version = "1.0.64", default-features = false }
|
serde_json = { version = "1.0.64", default-features = false }
|
||||||
instant = {version = "0.1.12", features = ["now"] }
|
instant = { version = "0.1.12", features = ["now"] }
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
tokio = { version = "1.18" }
|
tokio = { version = "1.18" }
|
||||||
|
@ -42,7 +43,10 @@ tokio = { version = "1.18" }
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
hex = { version = "0.4.3", default-features = false, features = ["std"] }
|
||||||
rand = { version = "0.8.5", default-features = false }
|
rand = { version = "0.8.5", default-features = false }
|
||||||
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = ["ws", "rustls"] }
|
ethers-providers = { version = "^0.17.0", path = "../ethers-providers", default-features = false, features = [
|
||||||
|
"ws",
|
||||||
|
"rustls"
|
||||||
|
] }
|
||||||
once_cell = "1.14.0"
|
once_cell = "1.14.0"
|
||||||
ethers-solc = { version = "^0.17.0", path = "../ethers-solc" }
|
ethers-solc = { version = "^0.17.0", path = "../ethers-solc" }
|
||||||
serial_test = "0.9.0"
|
serial_test = "0.9.0"
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-providers"
|
name = "ethers-providers"
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
rust-version = "1.62"
|
||||||
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Provider implementations for the ethers-rs crate"
|
description = "Provider implementations for the ethers-rs crate"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
|
@ -45,8 +46,9 @@ hashers = "1.0.1"
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
# tokio
|
# tokio
|
||||||
tokio = { version = "1.18", features = ["time"] }
|
tokio = { version = "1.18", features = ["time"] }
|
||||||
tokio-tungstenite = { version = "0.17.2", default-features = false, features = ["connect"], optional = true }
|
tokio-tungstenite = { version = "0.17.2", default-features = false, features = [
|
||||||
|
"connect"
|
||||||
|
], optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
ws_stream_wasm = "0.7"
|
ws_stream_wasm = "0.7"
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-signers"
|
name = "ethers-signers"
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
rust-version = "1.62"
|
||||||
|
authors = ["Georgios Konstantopoulos <me@gakonst.com>"]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
description = "Signer implementations for the ethers-rs crate"
|
description = "Signer implementations for the ethers-rs crate"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
|
@ -14,7 +15,7 @@ all-features = true
|
||||||
rustdoc-args = ["--cfg", "docsrs"]
|
rustdoc-args = ["--cfg", "docsrs"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ethers-core = { version = "^0.17.0", path = "../ethers-core", features = ["eip712"]}
|
ethers-core = { version = "^0.17.0", path = "../ethers-core", features = ["eip712"] }
|
||||||
thiserror = { version = "1.0.35", default-features = false }
|
thiserror = { version = "1.0.35", default-features = false }
|
||||||
coins-bip32 = "0.7.0"
|
coins-bip32 = "0.7.0"
|
||||||
coins-bip39 = "0.7.0"
|
coins-bip39 = "0.7.0"
|
||||||
|
@ -28,7 +29,9 @@ yubihsm = { version = "0.41.0", features = ["secp256k1", "http", "usb"], optiona
|
||||||
futures-util = { version = "^0.3", optional = true }
|
futures-util = { version = "^0.3", optional = true }
|
||||||
futures-executor = { version = "^0.3", optional = true }
|
futures-executor = { version = "^0.3", optional = true }
|
||||||
semver = { version = "1.0.14", optional = true }
|
semver = { version = "1.0.14", optional = true }
|
||||||
trezor-client = { version = "0.0.6", optional = true, default-features = false, features = ["f_ethereum"] }
|
trezor-client = { version = "0.0.6", optional = true, default-features = false, features = [
|
||||||
|
"f_ethereum"
|
||||||
|
] }
|
||||||
|
|
||||||
# aws
|
# aws
|
||||||
rusoto_core = { version = "0.48.0", optional = true }
|
rusoto_core = { version = "0.48.0", optional = true }
|
||||||
|
@ -41,7 +44,10 @@ eth-keystore = { version = "0.5.0" }
|
||||||
home = { version = "0.5.3", optional = true }
|
home = { version = "0.5.3", optional = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
ethers-contract = { version = "^0.17.0", path = "../ethers-contract", features = ["eip712", "abigen"]}
|
ethers-contract = { version = "^0.17.0", path = "../ethers-contract", features = [
|
||||||
|
"eip712",
|
||||||
|
"abigen"
|
||||||
|
] }
|
||||||
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712" }
|
ethers-derive-eip712 = { version = "^0.17.0", path = "../ethers-core/ethers-derive-eip712" }
|
||||||
serde_json = { version = "1.0.64" }
|
serde_json = { version = "1.0.64" }
|
||||||
tracing-subscriber = "0.3.15"
|
tracing-subscriber = "0.3.15"
|
||||||
|
|
|
@ -1,16 +1,18 @@
|
||||||
[package]
|
[package]
|
||||||
name = "ethers-solc"
|
name = "ethers-solc"
|
||||||
version = "0.17.0"
|
version = "0.17.0"
|
||||||
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
|
||||||
license = "MIT OR Apache-2.0"
|
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
rust-version = "1.62"
|
||||||
|
authors = [
|
||||||
|
"Matthias Seitz <matthias.seitz@outlook.de>",
|
||||||
|
"Georgios Konstantopoulos <me@gakonst.com>"
|
||||||
|
]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
readme = "../README.md"
|
readme = "../README.md"
|
||||||
documentation = "https://docs.rs/ethers"
|
documentation = "https://docs.rs/ethers"
|
||||||
repository = "https://github.com/gakonst/ethers-rs"
|
repository = "https://github.com/gakonst/ethers-rs"
|
||||||
homepage = "https://docs.rs/ethers"
|
homepage = "https://docs.rs/ethers"
|
||||||
description = """
|
description = "Utilites for working with solc"
|
||||||
Utilites for working with solc
|
|
||||||
"""
|
|
||||||
keywords = ["ethereum", "web3", "solc", "solidity", "ethers"]
|
keywords = ["ethereum", "web3", "solc", "solidity", "ethers"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -43,8 +45,10 @@ cfg-if = "1.0.0"
|
||||||
|
|
||||||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
||||||
home = "0.5.3"
|
home = "0.5.3"
|
||||||
svm = { package = "svm-rs", version = "0.2.16", default-features = false, optional = true, features = ["blocking"] }
|
svm = { package = "svm-rs", version = "0.2.16", default-features = false, optional = true, features = [
|
||||||
svm-builds = { package = "svm-rs-builds", version = "0.1.8", optional = true}
|
"blocking"
|
||||||
|
] }
|
||||||
|
svm-builds = { package = "svm-rs-builds", version = "0.1.8", optional = true }
|
||||||
|
|
||||||
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
||||||
# NOTE: this enables wasm compatibility for getrandom indirectly
|
# NOTE: this enables wasm compatibility for getrandom indirectly
|
||||||
|
@ -53,7 +57,7 @@ getrandom = { version = "0.2", features = ["js"] }
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = { version = "0.3", features = ["async_tokio"] }
|
criterion = { version = "0.3", features = ["async_tokio"] }
|
||||||
env_logger = "*"
|
env_logger = "*"
|
||||||
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
|
||||||
rand = "0.8.5"
|
rand = "0.8.5"
|
||||||
pretty_assertions = "1.3.0"
|
pretty_assertions = "1.3.0"
|
||||||
tempfile = "3.3.0"
|
tempfile = "3.3.0"
|
||||||
|
|
Loading…
Reference in New Issue