-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (56 loc) · 1.53 KB
/
Cargo.toml
File metadata and controls
60 lines (56 loc) · 1.53 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
[workspace]
resolver = "2"
members = [
"sbuild",
"sbuild-linter",
"sbuild-meta",
"sbuild-cache"
]
default-members = ["sbuild"]
[workspace.package]
license = "MIT"
edition = "2021"
description = "Toolchain for building, linting, metadata generation, and cache management of SBUILD packages"
repository = "https://github.com/pkgforge/sbuilder"
keywords = ["soar", "sbuild", "lint", "build", "package"]
[workspace.dependencies]
# Internal crates
sbuild-cache = { path = "sbuild-cache" }
sbuild-linter = { path = "sbuild-linter" }
sbuild-meta = { path = "sbuild-meta" }
# External
base64 = "0.22"
mongodb = { version = "3", default-features = false, features = ["rustls-tls", "bson-3", "compat-3-3-0", "dns-resolver"] }
blake3 = "1.8"
chrono = { version = "0.4", default-features = false }
clap = { version = "4", features = ["derive", "env"] }
colored = "3.1"
env_logger = "0.11"
futures = "0.3"
glob = "0.3"
goblin = { version = "0.10", default-features = false, features = ["elf64", "elf32", "endian_fd", "std"] }
indexmap = "2.13"
log = "0.4"
memmap2 = "0.9"
rayon = "1.11"
regex = "1"
reqwest = { version = "0.13", default-features = false }
rusqlite = { version = "0.38", features = ["bundled"] }
semver = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
saphyr = "0.0.6"
sha2 = "0.10"
squishy = { version = "0.5.0", features = ["appimage", "dwarfs"] }
tempfile = "3.25"
thiserror = "2"
tokio = "1"
url = "2.5"
which = "8.0"
zstd = "0.13"
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"