-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
49 lines (43 loc) · 1.38 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
[package]
name = "dynasty"
version = "0.1.0"
edition = "2021"
description = "Desktop terminal for cryptocurrency exchanges"
[package.metadata.bundle]
name = "Dynasty"
identifier = "io.github.me.dynasty"
icon = ["assets/dynasty.icns"]
[dependencies]
binance-rs-async = { version = "1.3.2", default_features = false, features = ["rustls-tls", "wallet_api"] }
chrono = "0.4.31"
iced = { version = "0.12.0", features = ["tokio", "debug", "lazy", "svg", "image", "advanced", "canvas"] }
iced_futures = "0.12.0"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = "1.0.114"
tokio = { version = "1.32.0", default-features = false, features=["sync"]}
ngnk = { path = "crates/ngnk", optional = true }
meval = { version = "0.2.0", optional = true }
plotters = "0.3.5"
plotters-iced = "0.10.0"
phf = "0.11.1"
regex = "1.10.4"
ringbuf = "0.3.3"
ahash = "0.8.11"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
# loader widget
lyon_algorithms = "1.0.4"
[features]
default = ["calculator_meval"]
calculator_k = ["dep:ngnk"]
calculator_meval = ["dep:meval"]
[build-dependencies]
phf_codegen = "0.11.1"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
directories-next = "2.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
web-sys = { version = "0.3", features = ["Window", "Storage"] }
[profile.release]
codegen-units = 1
lto = true
strip = true