-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (32 loc) · 869 Bytes
/
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
35
36
37
[package]
name = "rosetta-bitcoin"
version = "0.1.0"
edition = "2021"
rust-version = "1.62.1"
[profile.dev]
codegen-units = 512
debug = 2
incremental = true
opt-level = 0
[profile.release]
codegen-units = 1
incremental = false
lto = "thin"
opt-level = 3
panic = "abort"
split-debuginfo = '...'
strip = true
[profile.release-docker]
inherits = "release"
opt-level = "z"
[dependencies]
mentat-asserter = { git = "https://github.com/monadicus/mentat" }
mentat-server = { git = "https://github.com/monadicus/mentat" }
mentat-types = { git = "https://github.com/monadicus/mentat" }
futures = "0.3.21"
hex = "0.4.3"
bitcoin = "0.29.1"
# [patch."https://github.com/monadicus/mentat"]
# mentat-asserter = { path = "../mentat/crates/mentat-asserter" }
# mentat-server = { path = "../mentat/crates/mentat-server" }
# mentat-types = { path = "../mentat/crates/mentat-types" }