forked from hirosystems/clarinet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (31 loc) · 1.08 KB
/
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
34
[workspace]
resolver = "2"
members = [
"components/clarinet-cli",
"components/clarinet-deployments",
"components/clarinet-files",
"components/clarinet-utils",
"components/clarinet-sdk-wasm",
"components/clarity-lsp",
"components/clarity-repl",
"components/clarity-events",
"components/hiro-system-kit",
"components/stacks-codec",
"components/stacks-devnet-js",
"components/stacks-network",
"components/stacks-rpc-client",
]
default-members = ["components/clarinet-cli"]
[workspace.package]
version = "2.10.0"
[workspace.dependencies]
clarity = { git = "https://github.com/stacks-network/stacks-core.git", branch="feat/clarity-wasm-develop", package = "clarity", default-features = false }
lazy_static = { version = "1.5.0" }
reqwest = { version = "0.12", default-features = false, features = [
"json",
"rustls-tls",
] }
[patch.crates-io]
chainhook-sdk = { git = "https://github.com/hirosystems/chainhook.git" }
chainhook-types = { git = "https://github.com/hirosystems/chainhook.git" }
stacks-codec = { path = "./components/stacks-codec" }