-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 1.16 KB
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 1.16 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
edition = "2021"
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/containers/composefs-rs"
rust-version = "1.88.0"
version = "0.3.0"
[workspace.lints.rust]
missing_docs = "deny"
missing_debug_implementations = "deny"
unsafe_code = "deny" # https://github.com/containers/composefs-rs/issues/123
[workspace.dependencies]
composefs = { version = "0.3.0", path = "crates/composefs", default-features = false }
composefs-oci = { version = "0.3.0", path = "crates/composefs-oci", default-features = false }
composefs-boot = { version = "0.3.0", path = "crates/composefs-boot", default-features = false }
composefs-http = { version = "0.3.0", path = "crates/composefs-http", default-features = false }
composefs-ostree = { version = "0.3.0", path = "crates/composefs-ostree", default-features = false }
[profile.dev.package.sha2]
# this is *really* slow otherwise
opt-level = 3
[profile.profiling]
inherits = "release"
debug = true
[workspace.metadata.vendor-filter]
# match cargo-vendor-filterer config from bootc
platforms = ["*-unknown-linux-gnu"]
tier = "2"
all-features = true