-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
66 lines (58 loc) · 1.51 KB
/
Cargo.toml
File metadata and controls
66 lines (58 loc) · 1.51 KB
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
[package]
name = "tornade-core"
version = "1.6.0"
edition = "2024"
[lib]
name = "tornade_core"
crate-type = ["staticlib", "rlib"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
rusqlite = { version = "0.32", features = ["bundled"] }
r2d2 = "0.8"
r2d2_sqlite = "0.25"
thiserror = "1.0"
log = "0.4"
env_logger = "0.11"
directories = "5.0"
once_cell = "1.19"
rodio = { version = "0.19", features = ["symphonia-flac", "symphonia-mp3", "symphonia-aac"] }
cpal = "0.15"
symphonia = { version = "0.5", features = ["flac", "mp3", "aac", "alac"] }
lofty = "0.21"
image = "0.25"
walkdir = "2.5"
rand = "0.8"
reqwest = { version = "0.11", features = ["json", "rustls-tls"] }
tokio = { version = "1.35", features = ["rt-multi-thread", "macros", "time", "sync"] }
urlencoding = "2.1"
chrono = "0.4"
swift-bridge = "0.1"
[build-dependencies]
swift-bridge-build = "0.1"
[dev-dependencies]
tempfile = "3.8"
wiremock = "0.5"
[features]
default = []
device-support = []
appstore = [] # Enables App Store build (StoreKit IAP instead of license keys)
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
[profile.release.package.symphonia]
opt-level = 3
[profile.release.package.symphonia-core]
opt-level = 3
[profile.release.package.symphonia-bundle-flac]
opt-level = 3
[profile.release.package.symphonia-bundle-mp3]
opt-level = 3
[profile.release.package.symphonia-codec-aac]
opt-level = 3
[profile.release.package.symphonia-codec-alac]
opt-level = 3
[profile.release.package.rodio]
opt-level = 3