-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (23 loc) · 933 Bytes
/
Cargo.toml
File metadata and controls
29 lines (23 loc) · 933 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
[workspace]
resolver = "3"
members = [
"crates/*"
]
[workspace.package]
version = "0.1.0"
edition = "2024"
rust-version = "1.91.0"
authors = ["Blockstream"]
readme = "README.md"
repository = "https://github.com/Blockstream/simplicity-dex"
keywords = ["liquid", "bitcoin", "options", "simplicity"]
categories = ["cryptography::cryptocurrencies"]
[workspace.dependencies]
anyhow = { version = "1.0.100" }
tracing = { version = "0.1.41" }
contracts = { git = "https://github.com/BlockstreamResearch/simplicity-contracts.git", rev = "116b0eb", package = "contracts" }
cli-helper = { git = "https://github.com/BlockstreamResearch/simplicity-contracts.git", rev = "116b0eb", package = "cli" }
simplicityhl-core = { version = "0.4.2", features = ["encoding"] }
simplicityhl = { version = "0.4.1" }
[patch.crates-io]
simplicity-sys = { git = "https://github.com/BlockstreamResearch/rust-simplicity", tag = "simplicity-sys-0.6.1" }