2021-10-26 11:28:10 +00:00
|
|
|
[package]
|
|
|
|
name = "ethers-solc"
|
2022-07-28 17:58:51 +00:00
|
|
|
version = "0.17.0"
|
2021-10-26 11:28:10 +00:00
|
|
|
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
edition = "2018"
|
|
|
|
readme = "../README.md"
|
|
|
|
documentation = "https://docs.rs/ethers"
|
|
|
|
repository = "https://github.com/gakonst/ethers-rs"
|
|
|
|
homepage = "https://docs.rs/ethers"
|
|
|
|
description = """
|
|
|
|
Utilites for working with solc
|
|
|
|
"""
|
2021-10-31 11:34:51 +00:00
|
|
|
keywords = ["ethereum", "web3", "solc", "solidity", "ethers"]
|
2021-10-26 11:28:10 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2022-07-28 17:58:49 +00:00
|
|
|
ethers-core = { version = "^0.17.0", path = "../ethers-core", default-features = false }
|
2021-10-26 11:28:10 +00:00
|
|
|
serde_json = "1.0.68"
|
|
|
|
serde = { version = "1.0.130", features = ["derive"] }
|
2022-08-04 17:04:05 +00:00
|
|
|
semver = { version = "1.0.13", features = ["serde"] }
|
2021-10-26 11:28:10 +00:00
|
|
|
walkdir = "2.3.2"
|
2022-05-29 00:54:45 +00:00
|
|
|
tokio = { version = "1.18", default-features = false, features = ["rt"] }
|
2021-12-15 02:32:36 +00:00
|
|
|
futures-util = { version = "^0.3", optional = true }
|
2022-08-17 21:13:59 +00:00
|
|
|
once_cell = "1.13.1"
|
2022-07-06 18:45:14 +00:00
|
|
|
regex = "1.6.0"
|
2022-02-18 13:37:59 +00:00
|
|
|
md-5 = "0.10.1"
|
2022-05-23 18:41:30 +00:00
|
|
|
thiserror = "1.0"
|
2021-10-30 17:59:44 +00:00
|
|
|
hex = "0.4.3"
|
|
|
|
colored = "2.0.0"
|
2021-11-13 19:31:55 +00:00
|
|
|
glob = "0.3.0"
|
2022-08-01 04:14:35 +00:00
|
|
|
tracing = "0.1.36"
|
2021-12-21 17:37:31 +00:00
|
|
|
num_cpus = "1.13.1"
|
2021-12-08 00:38:29 +00:00
|
|
|
tiny-keccak = { version = "2.0.2", default-features = false }
|
2022-01-11 10:03:09 +00:00
|
|
|
tempfile = { version = "3.3.0", optional = true }
|
2021-12-12 23:39:28 +00:00
|
|
|
fs_extra = { version = "1.2.0", optional = true }
|
2022-07-06 21:11:23 +00:00
|
|
|
sha2 = { version = "0.10.2", default-features = false, optional = true }
|
2021-12-19 20:03:16 +00:00
|
|
|
dunce = "1.0.2"
|
2022-08-02 18:02:38 +00:00
|
|
|
solang-parser = { default-features = false, version = "=0.1.17" }
|
2022-05-16 17:21:33 +00:00
|
|
|
rayon = "1.5.3"
|
2022-03-15 12:27:49 +00:00
|
|
|
rand = { version = "0.8.5", optional = true }
|
2022-08-08 17:27:28 +00:00
|
|
|
path-slash = "0.2.1"
|
2022-05-14 23:29:45 +00:00
|
|
|
cfg-if = "1.0.0"
|
2021-10-31 14:41:36 +00:00
|
|
|
|
2021-12-03 20:03:26 +00:00
|
|
|
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
|
|
|
|
home = "0.5.3"
|
2022-08-11 20:01:48 +00:00
|
|
|
svm = { package = "svm-rs", version = "0.2.15", default-features = false, optional = true, features = ["blocking"] }
|
|
|
|
svm-builds = { package = "svm-rs-builds", version = "0.1.7", optional = true}
|
2021-12-03 20:03:26 +00:00
|
|
|
|
2021-12-03 17:27:55 +00:00
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
|
|
# NOTE: this enables wasm compatibility for getrandom indirectly
|
|
|
|
getrandom = { version = "0.2", features = ["js"] }
|
2021-10-26 11:28:10 +00:00
|
|
|
|
2022-07-29 00:36:22 +00:00
|
|
|
[dev-dependencies]
|
|
|
|
criterion = { version = "0.3", features = ["async_tokio"] }
|
|
|
|
env_logger = "*"
|
|
|
|
tracing-subscriber = {version = "0.3", default-features = false, features = ["env-filter", "fmt"]}
|
|
|
|
rand = "0.8.5"
|
|
|
|
pretty_assertions = "1.2.1"
|
|
|
|
tempfile = "3.3.0"
|
|
|
|
tokio = { version = "1.18", features = ["full"] }
|
|
|
|
|
2021-12-06 23:02:13 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "compile_many"
|
|
|
|
harness = false
|
|
|
|
|
2022-01-05 21:46:57 +00:00
|
|
|
[[bench]]
|
|
|
|
name = "read_all"
|
|
|
|
harness = false
|
|
|
|
|
2021-12-12 23:39:28 +00:00
|
|
|
[[test]]
|
|
|
|
name = "project"
|
|
|
|
path = "tests/project.rs"
|
2022-04-03 15:05:31 +00:00
|
|
|
required-features = ["full", "project-util"]
|
2021-12-12 23:39:28 +00:00
|
|
|
|
2022-03-15 12:27:49 +00:00
|
|
|
[[test]]
|
|
|
|
name = "mocked"
|
|
|
|
path = "tests/mocked.rs"
|
2022-04-03 15:05:31 +00:00
|
|
|
required-features = ["full", "project-util"]
|
2022-03-15 12:27:49 +00:00
|
|
|
|
2021-10-26 11:28:10 +00:00
|
|
|
[features]
|
2021-12-19 14:56:54 +00:00
|
|
|
default = ["rustls"]
|
2022-05-14 23:29:45 +00:00
|
|
|
async = ["tokio/process", "tokio/io-util", "tokio/fs", "tokio/time", "futures-util"]
|
2022-03-21 08:58:56 +00:00
|
|
|
full = ["async", "svm-solc"]
|
|
|
|
svm-solc = ["svm/blocking", "svm-builds", "sha2"]
|
2021-12-12 23:39:28 +00:00
|
|
|
# Utilities for creating and testing project workspaces
|
2022-03-15 12:27:49 +00:00
|
|
|
project-util = ["tempfile", "fs_extra", "rand"]
|
2021-11-05 18:23:24 +00:00
|
|
|
tests = []
|
2021-12-19 14:56:54 +00:00
|
|
|
openssl = ["svm/openssl"]
|
|
|
|
rustls = ["svm/rustls"]
|
2021-12-19 16:02:22 +00:00
|
|
|
asm = ["sha2/asm", "svm/sha2-asm"]
|