-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
41 lines (34 loc) · 881 Bytes
/
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
[package]
name = "clef"
version = "0.1.0"
edition = "2021"
authors = [ "Dan Knutson <dan.knutson@gmail.com>" ]
[dependencies]
anyhow.workspace = true
camino.workspace = true
directories.workspace = true
flume.workspace = true
log.workspace = true
pretty_env_logger = "0.4"
clef_shared = { path = "./crates/shared" }
clef_db = { path = "./crates/db" }
clef_audio = { path = "./crates/audio" }
clef_ui = { path = "./crates/ui" }
# compile all external dependencies in release mode
[profile.dev.package."*"]
opt-level = 3
[workspace]
resolver = "2"
members = [
"crates/shared",
"crates/db",
"crates/audio",
"crates/ui"
]
[workspace.dependencies]
anyhow = { version = "1.0.66", features = ["backtrace"] }
camino = "1.1.1"
directories = "4.0.1"
flume = { version = "0.10.14" }
log = { version = "0.4", features = ["release_max_level_info"] }
thiserror = "1.0.37"