-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (34 loc) · 1.15 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
[package]
name = "wasm-dvm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
axum = "0.6.20"
bitcoin = "0.30.2"
tower-http = { version = "0.4.4", features = ["cors"] }
log = "0.4.20"
pretty_env_logger = "0.5.0"
clap = { version = "4.4.18", features = ["derive"] }
chrono = { version = "0.4", features = ["serde"] }
diesel = { version = "2.1", features = ["postgres", "r2d2", "chrono", "numeric", "serde_json"] }
diesel_migrations = "2.1.0"
home = "0.5.9"
hex = "0.4.3"
nostr = "=0.28.0"
nostr-sdk = "0.28.0"
serde = "1.0"
serde_json = "1.0"
lightning-invoice = { version = "0.29.0", features = ["serde"] }
lnurl-rs = { version = "0.4.0", default-features = false }
reqwest = { version = "0.11", features = ["blocking"] }
tempfile = "3.2"
tokio = { version = "1", features = ["full"] }
extism = "1.0.3"
tonic_openssl_lnd = "0.2.0"
sha2 = "0.10.8"
kormir = { version = "0.1.9", features = ["nostr"] }
# needed until next release of nostr
[patch.crates-io]
nostr = { git = 'https://github.com/benthecarman/nostr.git', rev = "62f4832808d2995e4695e36169aa5e2b80dea1e2" }