-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 1.11 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
[package]
name = "stratus"
version = "0.1.0"
authors = ["Emily Hudson <[email protected]>"]
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
json = "0.12"
toml = "0.5"
eyre = "0.6"
scopeguard = "1.1"
lazy_static = "1.4"
derive_more = "0.99"
futures = "0.3"
iced = { git = "https://github.com/iced-rs/iced", features = ["tokio", "image", "advanced", "lazy"] }
log = "0.4"
fern = "0.6"
image = "0.23"
static_assertions = "1.1"
audio = { path = "./audio" }
async-trait = "0.1"
parking_lot = "0.11"
fuzzy-matcher = "*"
backoff = { version = "0.3", features = ["tokio"] }
ellipse = "0.2"
console-subscriber = "*"
arc-swap = "1.6"
poll-promise = "0.2"
eframe = "0.22"
regex = { version = "1.8", features = ["unicode-case"] }
hashbrown = "0.12"
once_cell = { version = "1.18", features = ["parking_lot"] }
[profile.release]
debug = true
strip = true
opt-level = 3