-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
54 lines (45 loc) · 1.33 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
[package]
name = "webimint"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
opt-level = 'z'
[profile.ci]
inherits = "dev"
incremental = false
debug = "line-tables-only"
lto = "off"
[dependencies]
async-trait = "0.1.68"
anyhow = "1.0.71"
base64 = "0.21.3"
fedimint-client = "0.3.2-rc.0"
fedimint-core = "0.3.2-rc.0"
fedimint-wallet-client = "0.3.2-rc.0"
fedimint-mint-client = "0.3.2-rc.0"
fedimint-ln-client = "0.3.2-rc.0"
futures = "0.3.28"
hex = "0.4.3"
itertools = "0.13.0"
leptos = { version = "0.6.5", features = ["csr"] }
leptos-use = "0.10.2"
leptos-qr-scanner = "0.1.1"
leptos_meta = { version = "0.6.5", features = ["csr"] }
lightning-invoice = { version = "0.26.0", features = [ "serde" ] }
qrcode-generator = "4.1.8"
secp256k1-zkp = "0.7.0"
console_error_panic_hook = "0.1.7"
tracing = "0.1.37"
tracing-wasm = "0.2.1"
thiserror = "1.0"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1.28.2", features = [ "rt", "sync", "time" ] }
tokio-stream = "0.1.14"
wasm-bindgen = "0.2.87"
wasm-bindgen-futures = "0.4.37"
web-sys = { version = "0.3.65", features = [ "Navigator", "Window", "ServiceWorkerContainer", "HtmlTextAreaElement" ] }
gloo-storage = "0.3.0"
rand = "0.8.5"
[build-dependencies]
fedimint-build = "0.3.2-rc.0"