forked from kaspanet/silverscript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (46 loc) · 1.97 KB
/
Copy pathCargo.toml
File metadata and controls
48 lines (46 loc) · 1.97 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
[workspace]
members = [
"silverscript-lang",
"silverscript-abi",
"silverscript-debug-artifact",
"debugger/session",
"debugger/cli",
]
exclude = ["tree-sitter"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2024"
license = "ISC"
authors = ["Kaspa developers"]
repository = ""
rust-version = "1.94.0"
[workspace.dependencies]
# Keep all rusty-kaspa crates on this shared revision because v2.0.1 predates
# kaspa-txscript-zk-sdk. Replace these revision pins with one version/tag once
# a rusty-kaspa release includes that crate.
kaspa-consensus-core = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-consensus = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-addresses = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-hashes = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-muhash = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-txscript = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-txscript-zk-sdk = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
kaspa-txscript-errors = { git = "https://github.com/kaspanet/rusty-kaspa", rev = "a41a333b08848f41bf737b72592e463a6011b8ac" }
blake2b_simd = "1.0.2"
blake3 = "1.8.5"
faster-hex = "0.10"
indexmap = "2.7.0"
rand = "0.8.5"
secp256k1 = { version = "0.29.0", features = [
"global-context",
"rand-std",
"serde",
] }
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
serde_json = "1.0"
silverscript-lang = { path = "silverscript-lang" }
silverscript-abi = { path = "silverscript-abi" }
silverscript-debug-artifact = { path = "silverscript-debug-artifact" }
thiserror = "1.0.61"