-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
42 lines (36 loc) · 879 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
37
38
39
40
41
42
[package]
name = "lnurl"
version = "0.2.0"
authors = ["Edouard Paris <[email protected]>"]
description = "Helpers for LNURL"
readme = "README.md"
edition = "2018"
license = "MIT"
repository = "https://github.com/edouardparis/rust-lnurl.git"
documentation = "https://docs.rs/lnurl/"
[lib]
name = "lnurl"
[features]
# Include nothing by default
default = []
auth = ["hex", "secp256k1"]
[dependencies]
hex = { version = "0.4.2", optional = true }
secp256k1 = { version = "^0.17.2", optional = true }
serde = { version = "^1.0.93", features =["derive"]}
serde_json = "^1.0.39"
[dev-dependencies]
bech32 = "0.7.1"
hex = "0.4.2"
image = "0.22.3"
qrcode = "0.11.0"
rand = "0.7.3"
serde_derive = "1.0"
tokio = { version = "0.2", features = ["macros"] }
tracing = "0.1"
tracing-subscriber = "0.2"
warp = "0.2.4"
[examples]
[[example]]
name = "lnurl_auth"
required-features = ["auth"]