-
Notifications
You must be signed in to change notification settings - Fork 20
/
Cargo.toml
76 lines (73 loc) · 2.27 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[workspace]
resolver = "2"
members = [
"crates/anychain-core",
"crates/anychain-bitcoin",
"crates/anychain-ethereum",
"crates/anychain-tron",
"crates/anychain-filecoin",
"crates/anychain-polkadot",
"crates/anychain-ripple",
"crates/anychain-neo",
"crates/anychain-kms",
"examples/*",
]
[workspace.package]
authors = ["Shawndslee", "cregis.com"]
edition = "2021"
homepage = "https://www.cregis.com"
license = "MIT/Apache-2.0"
repository = "https://github.com/0xcregis/anychain"
[workspace.dependencies]
sha3 = "0.10.1"
thiserror = "1.0"
ethereum-types = "0.13.1"
ripemd = "0.1.1"
blake2b_simd = "1.0.0"
bech32 = "0.9.0"
hex = "0.4.2"
libsecp256k1 = "0.7.1"
ed25519-dalek = "1.0.1"
curve25519-dalek = { version = "4.1.3", features = ["group"] }
bls-signatures = "0.14.0"
base58 = { version = "0.2" }
rand = { version = "0.8.5" }
rand_core = { version = "0.6.3", default-features = false }
rlp = { version = "0.5.2", features = ["derive"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
sha2 = { version = "0.10.8", default-features = false }
serde = { version = "1.0", default-features = false, features = ["alloc", "derive"] }
fvm_shared = "3.3.1"
data-encoding = "2.3.2"
data-encoding-macro = "0.1.12"
fvm_ipld_encoding = "0.2.2"
num-derive = "0.3.3"
num-traits = "0.2.15"
lazy_static = "1.4.0"
unsigned-varint = "0.7.1"
num-bigint = "0.4.3"
anyhow = "1.0.75"
forest_encoding = "0.2.2"
cid = "0.8.6"
base64 = "0.21.5"
bytes = "1.0"
protobuf = { version = "=3.4.0" }
chrono = "0.4"
ethabi = "17.2.0"
regex = { version = "1.3" }
clap = { version = "4.4.7", features = ["derive"] }
primitive-types = { version = "0.11.1", features = ["rlp"] }
rustc-hash = "1.1.0"
hmac = "0.12.1"
pbkdf2 = { version = "0.12.1", default-features = false }
unicode-normalization = "0.1.22"
zeroize = { version = "1.3.0", default-features = false }
once_cell = { version = "1.18.0" }
subtle = { version = "2", default-features = false }
p256 = "0.13.2"
bs58 = { version = "0.4", default-features = false, features = ["check", "alloc"] }
[profile.release]
strip = true # Automatically strip symbols from the binary
opt-level = "s" # Optimize for size
lto = true # Enable link time optimization
codegen-units = 1 # Maximize size reduction optimizations