-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (27 loc) · 978 Bytes
/
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
[package]
name = "vm-zstd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"program",
]
[dependencies]
bitstream-io = "2.2"
itertools = "0.11"
strum = "0.25"
strum_macros = "0.25"
anyhow = "1"
log = "0.4"
serde = { version = "1", default-features = false, features = ["derive"] }
[dev-dependencies]
hex = "0.4"
openvm = { git = "https://github.com/openvm-org/openvm.git", default-features = false, features = ["std"] }
openvm-sdk = { git = "https://github.com/openvm-org/openvm.git", default-features = false}
openvm-transpiler = { git = "https://github.com/openvm-org/openvm.git", default-features = false }
#openvm-instructions = { git = "https://github.com/openvm-org/openvm.git", default-features = false }
zstd-encoder = { package = "encoder", git = "https://github.com/scroll-tech/da-codec.git", tag = "v0.1.2" }
[[bench]]
harness = false
name = "cycles"