forked from rust-nostr/nostr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (31 loc) · 871 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
36
[package]
name = "nostr-connect"
version = "0.37.0"
edition = "2021"
description = "Nostr Connect (NIP46)"
authors.workspace = true
homepage.workspace = true
repository.workspace = true
license.workspace = true
readme = "README.md"
rust-version.workspace = true
keywords = ["nostr", "signer", "nip46", "nostr-connect"]
[features]
default = []
tor = ["nostr-relay-pool/tor"]
[dependencies]
async-trait.workspace = true
async-utility.workspace = true
nostr = { workspace = true, features = ["std", "nip04", "nip44", "nip46"] }
nostr-relay-pool.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["sync"] }
tracing.workspace = true
[dev-dependencies]
dialoguer = "0.11"
tracing-subscriber = { workspace = true, features = ["env-filter"] }
webbrowser = "1.0"
[[example]]
name = "handle-auth-url"
[[example]]
name = "nostr-connect-signer"