-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (37 loc) · 1.25 KB
/
Cargo.toml
File metadata and controls
42 lines (37 loc) · 1.25 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
[package]
name = "clarinet-deployments"
version.workspace = true
edition = "2021"
[dependencies]
clarity = { workspace = true }
colored = { workspace = true }
base64 = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
yaml_serde = { workspace = true }
strum = { workspace = true, features = ["derive"] }
rand = { workspace = true }
reqwest = { workspace = true }
stacks-common = { workspace = true, default-features = false }
clarity-repl = { path = "../clarity-repl", default-features = false }
clarinet-defaults = { workspace = true }
clarinet-files = { path = "../clarinet-files" }
[dev-dependencies]
indoc = { workspace = true }
mockito = { workspace = true }
pretty_assertions = { workspace = true }
tempfile = { workspace = true }
tokio = { workspace = true }
toml = { workspace = true }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
bitcoin = "0.31.2"
bitcoincore-rpc = { workspace= true }
bitcoincore-rpc-json = { workspace= true }
base58 = { workspace = true }
libsecp256k1 = { workspace = true }
clarinet-utils = { path = "../clarinet-utils" }
stacks-codec = { path = "../stacks-codec" }
stacks-rpc-client = { path = "../stacks-rpc-client" }
[lib]
name = "clarinet_deployments"
path = "src/lib.rs"