-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
72 lines (69 loc) · 1.75 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
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
[package]
name = "capybastr"
version = "0.1.0"
authors = ["ahriknow <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#nostr-sdk = { version = "0.32", default-features = false, features = [
# "indexeddb",
# "webln",
# "nip04",
# "nip05",
# "nip06",
# "nip11",
# "nip44",
# "nip46",
# "nip47",
# "nip49",
# "nip57",
# "nip59",
#] }
nostr-sdk = { git = "https://github.com/rust-nostr/nostr.git", branch = "master", default-features = false, features = [
"indexeddb",
"webln",
"nip04",
"nip05",
"nip06",
"nip11",
"nip44",
"nip46",
"nip47",
"nip49",
"nip57",
"nip59",
], package = "nostr-sdk" }
dashmap = "5.5.3"
#nostr-indexeddb = "0.32"
nostr-indexeddb = { git = "https://github.com/rust-nostr/nostr.git", branch = "master", package = "nostr-indexeddb" }
chrono = { version = "0.4", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1.0"
dioxus = { version = "0.5.1", features = ["web", "router"] }
regex = "1.10"
# Debug
dioxus-logger = "0.5.1"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
indextree = "4.6.1"
indexed_db_futures = "0.4.1"
web-sys = "0.3.69"
wasm-bindgen = { version = "0.2", features = ["serde-serialize"] }
serde-wasm-bindgen = "0.6.5"
futures = "0.3"
wasm-bindgen-futures = "0.4"
thiserror = "1.0.30"
wasm-bindgen-test = "0.3"
js-sys = "0.3.69"
cached = "0.51.3"
urlencoding = "2.1.3"
tokio = { version = "1", features = ["sync"] }
gloo-timers = { version = "0.3.0", features = ["futures"] }
tokio-stream = "0.1"
uuid = "1.5.0"
aes-gcm = "0.10.3"
qrcode = "0.14.0"
[features]
default = []
# server = ["dioxus/axum"]
web = ["dioxus/web"]