-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathCargo.toml
102 lines (86 loc) · 2.16 KB
/
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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "agora"
version = "0.1.2"
description = "File server that accepts Lightning Network payments for downloads"
authors = ["Casey Rodarmor <[email protected]>", "Sönke Hahn <[email protected]>"]
license = "CC0-1.0"
edition = "2018"
repository = "https://github.com/agora-org/agora"
homepage = "https://github.com/agora-org/agora"
[workspace]
members = [".", "agora-lnd-client", "agora-test-context", "bin/prerelease", "bin/publish", "lnd-test-context"]
[dependencies]
color-backtrace = "0.5.1"
env_logger = "0.9.0"
form_urlencoded = "1.0.1"
futures = "0.3.14"
hex = "0.4.3"
http = "0.2.4"
lexiclean = "0.0.1"
log = "0.4.14"
maud = "0.22.2"
mime_guess = "2.0.3"
openssl = "0.10.35"
percent-encoding = "2.1.0"
pin-project = "1.0.7"
pulldown-cmark = "0.8.0"
qrcodegen = "=1.6.0"
rust-embed = "6.3.0"
rustls-acme = "0.1.7"
serde_yaml = "0.8.17"
termcolor = "1.1.2"
tokio-rustls = "0.22.0"
tonic = "0.5.2"
[dependencies.agora-lnd-client]
path = "agora-lnd-client"
version = "0.0.2"
[dependencies.hyper]
version = "0.14.7"
features = ["server", "stream", "tcp", "http1", "http2"]
[dependencies.serde]
version = "1.0.126"
features = ["derive"]
[dependencies.snafu]
version = "0.6.10"
features = ["backtraces-impl-backtrace-crate"]
[dependencies.structopt]
version = "0.3.21"
features = ["wrap_help"]
[dependencies.tokio]
version = "1.5.0"
features = ["rt", "rt-multi-thread", "macros", "fs"]
[dependencies.tokio-stream]
version = "0.1.7"
features = ["net"]
[dependencies.tower]
version = "0.4.10"
features = ["make"]
[dev-dependencies]
bardecoder = "0.2.2"
chromiumoxide = "0.3.1"
executable-path = "1.0.0"
guard = "0.5.1"
image = "0.22.0"
lightning-invoice = "0.14.0"
nix = "0.23.0"
pretty_assertions = "1.0.0"
regex = "1.5.4"
resvg = "0.15.0"
scraper = "0.12.0"
tempfile = "3.2.0"
tiny-skia = "0.5.1"
unindent = "0.1.7"
usvg = "0.15.0"
[dev-dependencies.agora-test-context]
path = "agora-test-context"
[dev-dependencies.lnd-test-context]
path = "lnd-test-context"
[dev-dependencies.rcgen]
version = "0.8.13"
features = ["x509-parser"]
[dev-dependencies.reqwest]
version = "0.11.3"
features = ["blocking", "stream", "rustls-tls"]
default-features = false
[features]
slow-tests = []