-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (39 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (39 loc) · 1.21 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 = "nostr-api"
version = "0.1.0"
edition = "2021"
description = "Nostr event ingestion & stats API"
[dependencies]
axum = { version = "0.8", features = ["ws"] }
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.8", features = ["runtime-tokio", "postgres", "json", "chrono"] }
redis = { version = "0.27", features = ["tokio-comp"] }
tokio-tungstenite = { version = "0.26", features = ["native-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bech32 = "0.9"
hex = "0.4"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
dotenvy = "0.15"
chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"
tower-http = { version = "0.6", features = ["cors"] }
uuid = { version = "1", features = ["v4"] }
url = "2"
sha2 = "0.10"
negentropy = "0.5"
reqwest = { version = "0.12", features = ["json"] }
openssl = { version = "0.10", features = ["vendored"] }
regex = "1.10"
secp256k1 = { version = "0.29", features = ["global-context"] }
base64 = "0.22"
[[bin]]
name = "test_negentropy"
path = "src/bin/test_negentropy.rs"
[[bin]]
name = "purge_non_wot"
path = "src/bin/purge_non_wot.rs"
[[bin]]
name = "crawl_zaps"
path = "src/bin/crawl_zaps.rs"