-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
67 lines (65 loc) · 2.13 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
[package]
name = "swissknife"
version = "0.1.3"
edition = "2021"
authors = ["Dario Anongba Varela <dario.varela@numeraire.tech>"]
rust-version = "1.79"
license = "MIT"
description = "Numeraire SwissKnife enables easy integration of Bitcoin, Lightning and smart contract protocols."
repository = "https://github.com/bitcoin-numeraire/swissknife"
homepage = "https://numeraire.tech"
build = "build.rs"
[dependencies]
async-trait = "0.1.83"
axum = { version = "0.7.7", features = ["macros"] }
axum-extra = { version = "0.9.4", features = ["typed-header", "query"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
serde_bolt = "0.3.5"
serde_with = "3.11.0"
tokio = { version = "1.40", features = ["full"] }
breez-sdk-core = { git = "https://github.com/breez/breez-sdk", tag = "0.6.2" }
bip39 = { version = "*", features = ["rand_core"] }
config = { version = "0.14.0", features = ["yaml", "json", "toml"] }
dotenv = "0.15.0"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["json", "env-filter"] }
jsonwebtoken = "9.3.0"
reqwest = { version = "0.12.8", features = ["json"] }
uuid = { version = "1.10.0", features = ["v4", "serde"] }
chrono = "0.4.38"
thiserror = "1.0.64"
tower-http = { version = "0.6.1", features = ["timeout", "trace", "cors"] }
regex = "1"
sea-orm = { version = "1.0", features = [
"sqlx-postgres",
"sqlx-sqlite",
"runtime-tokio-rustls",
"macros",
"with-chrono",
"with-uuid",
] }
strum = "0.26"
strum_macros = "0.26"
tonic = { version = "0.12.3", features = ["tls"] }
prost = "0.13.3"
lightning-invoice = "0.32.0"
hex = "0.4.3"
anyhow = "1.0.89"
futures-util = "0.3.31"
humantime = "2.1.0"
rust_socketio = { version = "0.6.0", features = ["async"] }
bcrypt = "0.15.1"
migration = { path = "migration" }
utoipa = { version = "5.1.1", features = ["axum_extras", "chrono", "uuid"] }
utoipa-scalar = { version = "0.2.0", features = ["axum"] }
native-tls = "0.2.12"
nostr-sdk = "0.35.0"
rand = "0.8.5"
base64 = "0.22.1"
tokio-tungstenite = { version = "0.24.0", features = ["native-tls"] }
http = "1.1.0"
bytes = "1.7.2"
[build-dependencies]
tonic-build = "0.12.3"
chrono = "0.4.38"