-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
33 lines (30 loc) · 1 KB
/
Copy pathCargo.toml
File metadata and controls
33 lines (30 loc) · 1 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
[workspace]
members = [
"crates/lowfat-core",
"crates/lowfat-compress",
"crates/lowfat-plugin",
"crates/lowfat-runner",
"crates/lowfat",
]
resolver = "2"
[workspace.package]
version = "0.8.0"
edition = "2021"
license = "Apache-2.0"
authors = ["zdk <di.warachet@gmail.com>"]
repository = "https://github.com/zdk/lowfat"
[workspace.dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
anyhow = "1"
thiserror = "2"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
regex = { version = "1", features = ["std"] }
rusqlite = { version = "0.32", features = ["bundled"] }
clap = { version = "4", features = ["derive"] }
# Internal crates (version required for crates.io publish)
lowfat-core = { path = "crates/lowfat-core", version = "=0.8.0" }
lowfat-compress = { path = "crates/lowfat-compress", version = "=0.8.0" }
lowfat-plugin = { path = "crates/lowfat-plugin", version = "=0.8.0" }
lowfat-runner = { path = "crates/lowfat-runner", version = "=0.8.0" }