forked from rust-nostr/nostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
33 lines (30 loc) · 904 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
[workspace]
members = [
"bindings/nostr-ffi",
"bindings/nostr-js",
"bindings/nostr-sdk-ffi",
"bindings/nostr-sdk-js",
"bindings/uniffi-bindgen",
"crates/*",
]
default-members = ["crates/*"]
resolver = "2"
[workspace.package]
homepage = "https://github.com/rust-nostr/nostr"
repository = "https://github.com/rust-nostr/nostr.git"
license = "MIT"
[workspace.dependencies]
async-trait = "0.1"
nostr = { version = "0.25", path = "./crates/nostr", default-features = false }
nostr-database = { version = "0.1", path = "./crates/nostr-database", default-features = false }
once_cell = "1.18"
thiserror = "1.0"
tokio = { version = "1.32", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = "0.3"
uniffi = "0.25"
url-fork = { version = "3.0", default-features = false }
[profile.release]
lto = true
codegen-units = 1
panic = "abort"