-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (68 loc) · 2.3 KB
/
Cargo.toml
File metadata and controls
78 lines (68 loc) · 2.3 KB
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
77
78
[workspace]
members = ["components/*", "packages/*"]
resolver = "2"
[workspace.package]
edition = "2021"
version = "0.9.3"
license = "MIT"
authors = ["Lay3r Labs Team"]
repository = "https://github.com/Lay3rLabs/wavs"
rust-version = "1.87.0"
[workspace.dependencies]
# WASI
wit-bindgen-rt = { version = "0.44.0", features = ["bitflags"] }
wit-bindgen = "0.44.0"
wstd = "0.5.4"
wasi = "0.14.2"
wavs-wasi-utils = "=1.2.0"
# WAVS (https://github.com/Lay3rLabs/wavs-tools/pull/123)
wavs-llm = { git = "https://github.com/Lay3rLabs/wavs-tools", rev = "cd1c4271deb7686a7d995b5b41bc226d8185df6e", package = "wavs-llm"}
wavs-eas = { git = "https://github.com/Lay3rLabs/wavs-tools", rev = "cd1c4271deb7686a7d995b5b41bc226d8185df6e", package = "wavs-eas" }
wavs-indexer-api = { git = "https://github.com/Lay3rLabs/wavs-tools", rev = "cd1c4271deb7686a7d995b5b41bc226d8185df6e", package = "wavs-indexer-api" }
wavs-merkle-sources = { git = "https://github.com/Lay3rLabs/wavs-tools", rev = "cd1c4271deb7686a7d995b5b41bc226d8185df6e", package = "wavs-merkle-sources" }
wavs-ipfs = { git = "https://github.com/Lay3rLabs/wavs-tools", rev = "f82061cda8e9c3570468304e3eabeb220b6c50c1", package = "wavs-ipfs"}
# Local packages
wavs-merkler = { path = "packages/wavs-merkler" }
# Other
schemars = "1.0.4"
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
anyhow = "1.0.98"
async-trait = "0.1.88"
inventory = "0.3"
futures = "0.3.31"
## Alloy
alloy-sol-macro = { version = "1.0.0", features = ["json"] }
alloy-sol-types = "1.0.0"
alloy-dyn-abi = "1.0.0"
alloy-json-abi = "1.0.0"
alloy-primitives = "1.0.0"
alloy-network = "1.0.0"
alloy-provider = { version = "1.0.0", default-features = false, features = [
"rpc-api",
] }
alloy-rpc-types = "1.0.0"
alloy-contract = "1.0.0"
alloy-transport-http = { version = "1.0.0", default-features = false }
## IPFS
cid = "0.7"
multibase = "0.9"
multihash = "0.18"
bs58 = "0.5"
## Common dependencies
hex = "0.4.3"
ethabi = "18.0.0"
primitive-types = "0.13.1"
base64 = "0.22.1"
mockall = "0.11"
thiserror = "1.0.47"
tiny-keccak = { version = "2.0", features = ["keccak"] }
tokio = { version = "1.47.1", features = ["full"] }
[profile.release]
codegen-units = 1
opt-level = "s"
debug = false
strip = true
lto = true
[patch.crates-io]
# This tells Cargo to not fetch submodules for ALL git dependencies