forked from parasitepool/para
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 1.89 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (62 loc) · 1.89 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
[package]
name = "para"
description = "Parasite toolkit"
version = "0.5.1"
license = "CC0-1.0"
edition = "2024"
authors = ["The Parasite Devs"]
homepage = "https://github.com/parasitepool/para"
repository = "https://github.com/parasitepool/para"
autotests = false
[dependencies]
anyhow = { version = "1.0.98", features = ["backtrace"] }
axum = { version = "0.8.3", features = ["http2"] }
axum-server = "0.7.2"
bitcoin = { version = "0.32.6", features = ["serde"] }
bitcoincore-rpc = "0.19.0"
boilerplate = { version = "1.0.1", features = ["axum"] }
byteorder = "1.5.0"
clap = { version = "4.5.36", features = ["derive", "env"] }
dashmap = "6.1.0"
derive_more = { version = "2.0.1", features = ["display"] }
dirs = "6.0.0"
futures = "0.3.31"
hex = "0.4.3"
html-escaper = "0.2.0"
lazy_static = "1.5.0"
mime_guess = "2.0.5"
primitive-types = "0.14.0"
rand = "0.9.1"
reqwest = { version = "0.12.22", features = ["rustls-tls", "blocking", "json"] }
rust-embed = "8.7.1"
rustls = { version = "0.23.26", features = ["ring"] }
rustls-acme = { version = "0.14.0", features = ["axum"] }
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
serde_with = "3.14.0"
sqlx = { version = "0.8.5", features = ["postgres", "runtime-tokio"] }
sysinfo = "0.37.0"
tokio = { version = "1.44.2", features = ["macros", "rt-multi-thread", "signal"] }
tokio-util = "0.7.15"
tower-http = { version = "0.6.2", features = ["auth", "fs", "set-header"] }
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "fmt"] }
[dev-dependencies]
bitcoin = "0.32.6"
chrono = "0.4.41"
executable-path = "1.0.0"
once_cell = "1.21.3"
pretty_assertions = "1.4.1"
tempfile = "3.20.0"
urlencoding = "2.1.3"
[target.'cfg(target_os = "linux")'.dev-dependencies]
pgtemp = "0.6.0"
[[bin]]
name = "para"
path = "src/bin/main.rs"
[lib]
name = "para"
path = "src/lib.rs"
[[test]]
name = "integration"
path = "tests/lib.rs"