-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
49 lines (43 loc) · 1.29 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
[workspace]
members = [
"anni",
"annil",
"annim",
"anni-provider",
"anni-common",
"anni-flac",
"anni-split",
"anni-repo",
"anni-workspace",
"anni-playback",
"anni-metadata",
"third_party/google-drive3",
]
resolver = "2"
[workspace.package]
edition = "2021"
authors = ["Yesterday17 <mmf@mmf.moe>"]
repository = "https://github.com/ProjectAnni/anni"
license = "Apache-2.0"
[workspace.dependencies]
anni-common = { version = "0.2.0", path = "./anni-common" }
anni-metadata = { path = "./anni-metadata" }
log = "0.4"
uuid = { version = "1", features = ["v4"] }
reqwest = { version = "0.12", features = [
"rustls-tls",
], default-features = false }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.7.3"
anyhow = "1.0"
thiserror = "1.0"
once_cell = "1"
axum = "0.7.3"
[patch.crates-io]
# Dropping wasm support before anni 1.0
# https://github.com/rusqlite/rusqlite/pull/1010 may not be merged recently
# rusqlite = { git = "https://github.com/ProjectAnni/rusqlite", branch = "wasm32-unknown-unknown" }
# Remove this patch after https://github.com/mackwic/colored/pull/119 was merged
colored = { git = "https://github.com/ProjectAnni/colored", branch = "master" }
cpal = { git = "https://github.com/sidit77/cpal.git", branch = "master" }