-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (25 loc) · 952 Bytes
/
Cargo.toml
File metadata and controls
29 lines (25 loc) · 952 Bytes
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
[package]
name = "composefs-boot"
description = "Helpers for bootable composefs systems"
keywords = ["composefs", "boot"]
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
anyhow = { version = "1.0.87", default-features = false }
fn-error-context = "0.2"
composefs = { workspace = true }
hex = { version = "0.4.0", default-features = false, features = ["std"] }
regex-automata = { version = "0.4.4", default-features = false, features=["hybrid", "std", "syntax"] }
rustix = { version = "1.0.0", default-features = false, features = ["fs", "std"] }
thiserror = { version = "2.0.0", default-features = false }
zerocopy = { version = "0.8.0", default-features = false, features = ["derive"] }
[dev-dependencies]
composefs = { workspace = true, features = ["test"] }
indoc = "2"
similar-asserts = "1.7.0"
[lints]
workspace = true