-
-
Notifications
You must be signed in to change notification settings - Fork 167
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (69 loc) · 3.08 KB
/
Copy pathCargo.toml
File metadata and controls
77 lines (69 loc) · 3.08 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
69
70
71
72
73
74
75
76
77
[workspace]
members = [
"crates/*",
# Nostr SDK
"sdk",
# Nostr Database
"database/nostr-database",
"database/nostr-database-test-suite",
"database/nostr-lmdb",
"database/nostr-memory",
"database/nostr-ndb",
"database/nostr-sqlite",
# Gossip
"gossip/nostr-gossip",
"gossip/nostr-gossip-memory",
"gossip/nostr-gossip-sqlite",
"gossip/nostr-gossip-test-suite",
# Remote File Storage implementations
"rfs/nostr-blossom",
"rfs/nostr-http-file-storage",
# Signers
"signer/nostr-browser-signer",
"signer/nostr-browser-signer-proxy",
"signer/nostr-connect",
]
default-members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2024"
authors = ["Yuki Kishimoto <yukikishimoto@protonmail.com>", "Rust Nostr Developers"]
homepage = "https://github.com/rust-nostr/nostr"
repository = "https://github.com/rust-nostr/nostr.git"
license = "MIT"
rust-version = "1.85.0"
[workspace.dependencies]
async-utility = "0.3"
async-wsocket = { git = "https://github.com/shadowylab/async-wsocket", rev = "0fed6c9c6aec7393ee0e9cf3933d76914ab427d3" }
atomic-destructor = { version = "0.3", default-features = false }
base64 = { version = "0.22", default-features = false }
btreecap = "0.1"
faster-hex = { version = "0.10", default-features = false }
lru = { version = "0.18", default-features = false }
negentropy = { version = "0.5", default-features = false }
nostr = { version = "0.44", path = "./crates/nostr", default-features = false }
nostr-connect = { version = "0.44", path = "./signer/nostr-connect", default-features = false }
nostr-database = { version = "0.44", path = "./database/nostr-database", default-features = false }
nostr-database-test-suite = { path = "./database/nostr-database-test-suite" }
nostr-memory = { version = "0.44", path = "./database/nostr-memory", default-features = false }
nostr-gossip = { version = "0.44", path = "./gossip/nostr-gossip", default-features = false }
nostr-gossip-memory = { version = "0.44", path = "./gossip/nostr-gossip-memory", default-features = false }
nostr-gossip-sqlite = { version = "0.44", path = "./gossip/nostr-gossip-sqlite", default-features = false }
nostr-gossip-test-suite = { path = "./gossip/nostr-gossip-test-suite" }
nostr-lmdb = { version = "0.44", path = "./database/nostr-lmdb", default-features = false }
nostr-ndb = { version = "0.44", path = "./database/nostr-ndb", default-features = false }
nostr-relay-builder = { version = "0.44", path = "./crates/nostr-relay-builder", default-features = false }
nostr-sdk = { version = "0.44", path = "./sdk", default-features = false }
reqwest = { version = "0.12", default-features = false }
rusqlite = { version = "0.38", default-features = false }
serde = { version = "1.0", default-features = false }
serde_json = { version = "1.0", default-features = false }
tempfile = "3.26"
tokio = { version = ">=1.37", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = "0.3"
universal-time = { version = "0.3", default-features = false }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"