-
Notifications
You must be signed in to change notification settings - Fork 178
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (82 loc) · 3.04 KB
/
Cargo.toml
File metadata and controls
87 lines (82 loc) · 3.04 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
79
80
81
82
83
84
85
86
87
[workspace]
resolver = "2"
members = [
"components/clarity-static-cost",
"components/clarinet-cli",
"components/clarinet-deployments",
"components/clarinet-files",
"components/clarinet-defaults",
"components/clarinet-format",
"components/clarinet-utils",
"components/clarinet-sdk-wasm",
"components/clarity-lsp",
"components/clarity-repl",
"components/clarity-events",
"components/hiro-system-kit",
"components/stacks-codec",
"components/observer",
"components/stacks-network",
"components/stacks-rpc-client",
]
default-members = ["components/clarinet-cli"]
[workspace.package]
version = "3.14.1"
[workspace.dependencies]
clarinet-defaults = { path = "components/clarinet-defaults" }
clarity = { git = "https://github.com/stacks-network/stacks-core.git", rev = "41bd9d0a15a08d8ab2603edf11774b0d21a616ec", package = "clarity", default-features = false }
clarity-types = { git = "https://github.com/stacks-network/stacks-core.git", rev = "41bd9d0a15a08d8ab2603edf11774b0d21a616ec", package = "clarity-types" }
stacks-common = { git = "https://github.com/stacks-network/stacks-core.git", rev = "41bd9d0a15a08d8ab2603edf11774b0d21a616ec", package = "stacks-common", default-features = false }
pox-locking = { git = "https://github.com/stacks-network/stacks-core.git", rev = "41bd9d0a15a08d8ab2603edf11774b0d21a616ec", package = "pox-locking", default-features = false }
stackslib = { git = "https://github.com/stacks-network/stacks-core.git", rev = "41bd9d0a15a08d8ab2603edf11774b0d21a616ec", package = "stackslib", default-features = false }
aes-gcm = "0.10"
argon2 = "0.5.3"
bs58 = "0.5"
base58 = "0.2.0"
base64 = "0.22.1"
bitcoincore-rpc = "0.18.0"
bitcoincore-rpc-json = "0.18.0"
clap = "4.5.57"
colored = "3"
chrono = "0.4.42"
crossterm = "0.29.0"
dirs = "6.0.0"
indexmap = "2.13.0"
tikv-jemallocator = "0.6.1"
js-sys = "0.3.80"
libsecp256k1 = "0.7.2"
pretty_assertions = "1.4"
rand = "0.8.5"
ratatui = { version = "0.30.0", default-features = false, features = [
"crossterm",
] }
regex = "1.12.3"
reqwest = { version = "0.12.28", default-features = false, features = [
"json",
"rustls-tls",
] }
rpassword = "7.4"
schemars = "1.2.1"
serde = "1.0.225"
serde_json = "1.0.149"
serde-wasm-bindgen = "0.6.4"
yaml_serde = "0.10.3"
signal-hook = "0.4.3"
strum = "0.27.2"
tempfile = "3.24.0"
thiserror = "2"
toml = { version = "0.5.6", features = ["preserve_order"] }
toml_edit = "0.22"
tokio = { version = "1.47.0", features = ["full"] }
tokio-util = { version = "0.7.16", features = ["codec"] }
wasm-bindgen = { version = "0.2.108" }
wasm-bindgen-futures = { version = "0.4.58" }
web-sys = { version = "0.3.85" }
indoc = "2.0.3"
# dev dependencies
mockito = { version = "1.7", default-features = false }
# [patch.'https://github.com/stacks-network/stacks-core.git']
# clarity = { path = "../stacks-core/clarity" }
# clarity-types = { path = "../stacks-core/clarity-types" }
# stacks-common = { path = "../stacks-core/stacks-common" }
# stackslib = { path = "../stacks-core/stackslib" }
# pox-locking = { path = "../stacks-core/pox-locking" }