forked from rust-nostr/nostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
35 lines (31 loc) · 954 Bytes
/
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
[package]
name = "nostr-relay-pool"
version = "0.37.0"
edition = "2021"
description = "Nostr Relay Pool"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
readme = "README.md"
rust-version.workspace = true
keywords = ["nostr", "relay", "pool"]
[features]
default = []
tor = ["async-wsocket/tor"]
nip11 = ["nostr/nip11"]
[dependencies]
async-utility.workspace = true
async-wsocket = { workspace = true, features = ["socks"] }
atomic-destructor.workspace = true
negentropy = { workspace = true, features = ["std"] }
negentropy-deprecated = { workspace = true, features = ["std"] }
nostr = { workspace = true, features = ["std"] }
nostr-database.workspace = true
tokio = { workspace = true, features = ["macros", "sync"] }
tracing.workspace = true
[dev-dependencies]
nostr-relay-builder.workspace = true
tracing-subscriber = { workspace = true, features = ["env-filter"] }
[[example]]
name = "pool"