-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
76 lines (70 loc) · 1.84 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
73
74
75
76
[package]
name = "satsbox"
version = "0.1.0"
description = "Nostr friendly bitcoin lightning custodial wallet service."
keywords = ["lightning", "nostr"]
publish = false
edition.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
exclude = ["./ui"]
[dependencies]
lightning-client = { version = "0.1.0", path = "./lightning" }
migration = { version = "0.1.0", package = "satsbox-migration", path = "./migration" }
entity = { version = "0.1.0", package = "satsbox-entity", path = "./entity" }
thiserror = "1.0.43"
sea-orm = { version = "0.12.2", features = [
"runtime-tokio-rustls",
"sqlx-postgres",
"sqlx-mysql",
"sqlx-sqlite",
] }
actix-web = "4.3.1"
config = { version = "0.13.3", features = [
"toml",
"json",
], default-features = false }
notify = "6.0.0"
tracing = "0.1.37"
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
parking_lot = "0.12.1"
num_cpus = "1.16.0"
tracing-subscriber = { version = "0.3.17" }
clap = { version = "4.2.7", features = ["derive"] }
dotenvy = "0.15.7"
rand = "0.8.5"
tokio = { version = "1.29.1", features = [
"rt",
"rt-multi-thread",
"net",
"time",
"macros",
"fs",
] }
jsonwebtoken = "8.3.0"
hex = { version = "0.4.3", features = ["serde"] }
serde-aux = { version = "4.2.0", default-features = false }
nostr-sdk = "0.24.0"
base64 = "0.21.2"
governor = "0.6.0"
futures = "0.3.28"
actix-cors = "0.6.4"
actix-files = "0.6.2"
[dev-dependencies]
anyhow = "1.0.71"
tempfile = "3.4.0"
temp-env = "0.3.4"
actix-rt = "2.8.0"
actix-http = "3.3.1"
url = "2.4.0"
[workspace]
members = ["lightning", "migration", "entity"]
[workspace.package]
edition = "2021"
license = "MIT"
homepage = "https://github.com/satsbox"
repository = "https://github.com/satsbox/satsbox.git"
authors = ["Arron zhang <arronzhang@me.com>"]