-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
46 lines (40 loc) · 1.35 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "swek"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/Ethnical/Swek3"
keywords = ["ethereum", "web3"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#ethers = { git = "https://github.com/gakonst/ethers-rs", default-features = false, features = ["solc-full"] }
semver = "1.0.5"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
futures = "0.3"
clap = { version = "3.2.8", features = ["derive"] }
tokio = {version="1.17", features= ["full"]}
colored = "2"
ascii_table = {version= "4.0.2",features=["color_codes"]}
json = "0.12.4"
solang-parser = "0.1.18"
ethers = { path = "ethers-rs", default-features = false, features = ["solc-full"]}
walkdir = "2.3.2"
crossterm = "0.25.0"
terminal-menu = "2.0.5"
zip-extract = "0.1.1"
reqwest = "0.11.13"
secp256k1 = "0.26.0"
hex = "0.4.3"
sha3 = "0.10.6"
toml = "0.7.1"
serde_derive = "1.0.151"
home = "0.5.4"
env_logger = "0.10.0"
log = "0.4.17"
heimdall = { git = "https://github.com/Jon-Becker/heimdall-rs/" , tag = "0.4.1"}
heimdall-common = { git = "https://github.com/Jon-Becker/heimdall-rs/", tag = "0.4.1" }
#ethers-solc = { path = "/Users/ethnical/Sec/Rust/oz_implementations/ethers-rs/ethers-solc/"}
[build]
rustflags = ["-C", "link-arg=-fuse-ld=lld"]