-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (40 loc) · 1.38 KB
/
Cargo.toml
File metadata and controls
43 lines (40 loc) · 1.38 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
[package]
name = "bitvmx-broker"
version = "0.7.0"
edition = "2021"
description = "BitVMX Broker"
keywords = ["BitVMX", "Broker"]
repository = "https://github.com/FairgateLabs/rust-bitvmx-broker"
readme = "README.md"
[dependencies]
anyhow = "1.0.95"
clap = { version = "4.4.18", features = ["derive"] }
futures = "0.3"
tarpc = { version = "0.37", features = ["full"] }
tokio = { version = "1", features = ["macros", "net", "rt-multi-thread"] }
tokio-serde = "0.9.0"
tracing = { version = "0.1.26" }
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.11"
rust-bitvmx-storage-backend = { git = "https://github.com/FairgateLabs/rust-bitvmx-storage-backend.git", optional = true, tag = "v0.7.0" }
bitvmx-settings = { git = "https://github.com/FairgateLabs/rust-bitvmx-settings.git", tag = "v0.7.0" }
tokio-rustls = "0.26.2"
tokio-util = "0.7.14"
rustls = "0.23.29"
rustls-pemfile = "2.2.0"
x509-parser = "0.17.0"
ring = "0.17.14"
hex = "0.4.0"
serde_yaml = "0.9.33"
rcgen = "0.12.0" # Do not update
rsa = "0.9.8"
sha2 = "0.10"
pem = "3.0.4"
serde_json = "1.0.64"
[dev-dependencies]
ctrlc = "3.1.0"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tempfile = "3.6.0"
[features]
#default = ["storagebackend"]
storagebackend = ["rust-bitvmx-storage-backend"]