-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
34 lines (29 loc) · 873 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
[package]
name = "andromeda-api"
version = "0.1.0"
edition = "2021"
[dependencies]
andromeda-common = { version = "0.1.0", path = "../common" }
muon = { version = "0.12.0", registry = "proton_internal" }
cfg-if = "1"
log = "0.4.19"
async-trait = { version = "0.1.66" }
mockall = { version = "0.13.0", optional = true }
serde_repr = "0.1.19"
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
bitcoin = { workspace = true, features = ["std"] }
[dev-dependencies]
wiremock = "0.6.0"
tokio = { workspace = true }
tokio-test = { workspace = true }
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
[features]
# Used to be able to use a non-standard api (no atlas or prod)
allow-dangerous-env = ["muon/unsealed"]
test = ["allow-dangerous-env", "mocking"]
mocking = ["mockall"]
# quark command. only available in atlas
quark = []