forked from starkware-bitcoin/simply
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 844 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 844 Bytes
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
[package]
name = "simply"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "simply"
path = "src/main.rs"
[[test]]
name = "integration-tests"
path = "tests/integration_tests.rs"
[dependencies]
simfony = { git = "https://github.com/m-kus/simfony", rev = "4cfde3af4bee376403cebd9b9acefff7ec21fbff", features = ["serde"] }
simplicity-lang = { git = "https://github.com/m-kus/rust-simplicity", rev = "9256c8433125145d643afd50e00a6670738ee749", features = ["test-utils"] }
itertools = "0.11"
elements = { version = "0.25", features = ["serde"] }
anyhow = "1.0"
clap = { version = "4.4", features = ["derive"] }
base64 = "0.21"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
hex = "0.4"
which = "5.0"
regex = "1.0"
tempfile = "3.0"
walkdir = "2.4"
reqwest = { version = "0.11", features = ["blocking"] }
[dev-dependencies]