-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
42 lines (40 loc) · 1.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
[package]
name = "chorus"
version = "1.5.3"
description = "A personal relay for nostr"
authors = ["Mike Dilger <[email protected]>"]
license = "MIT"
repository = "https://github.com/mikedilger/chorus"
edition = "2021"
[dependencies]
base64 = "0.22"
bitcoin_hashes = { version = "0.14", features = [ "bitcoin-io" ] }
dashmap = "6"
env_logger = "0.11"
futures = "0.3"
hex = "0.4"
http = "1.1"
http-body-util = "0.1"
hyper = { version = "1.5", features = [ "http1", "server" ] }
hyper-tungstenite = "0.15"
hyper-util = "0.1"
lazy_static = "1.5"
log = "0.4"
pocket-types = { git = "https://github.com/mikedilger/pocket", branch = "master" }
pocket-db = { git = "https://github.com/mikedilger/pocket", branch = "master" }
parking_lot = "0.12"
rustls-pki-types= "1.10"
rustls-pemfile = "2.2"
secp256k1 = { version = "0.29", features = [ "hashes", "global-context", "rand-std" ] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
speedy = "0.8"
textnonce = "1"
tokio = { version = "1", features = [ "full" ] }
tokio-rustls = "0.26"
tokio-util = { version = "0.7", features = [ "io" ] }
tokio-stream = "0.1"
toml = "0.8"
url = "2.5"
[dev-dependencies]
tempfile = "3"