2022-06-30 14:50:21 -07:00
|
|
|
[package]
|
|
|
|
|
name = "base"
|
2025-03-06 21:53:03 -08:00
|
|
|
version.workspace = true
|
|
|
|
|
edition.workspace = true
|
2022-06-30 14:50:21 -07:00
|
|
|
|
2022-07-23 13:51:56 -07:00
|
|
|
[lib]
|
|
|
|
|
path = "lib.rs"
|
|
|
|
|
|
2023-10-17 13:29:15 -07:00
|
|
|
[features]
|
|
|
|
|
selinux = []
|
|
|
|
|
|
2025-12-08 17:35:52 -08:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2023-05-19 15:16:54 -07:00
|
|
|
[build-dependencies]
|
2023-05-24 19:11:56 -07:00
|
|
|
cxx-gen = { workspace = true }
|
2023-05-19 15:16:54 -07:00
|
|
|
|
2022-06-30 14:50:21 -07:00
|
|
|
[dependencies]
|
2025-10-17 23:48:31 -07:00
|
|
|
derive = { workspace = true }
|
2023-05-24 19:11:56 -07:00
|
|
|
cxx = { workspace = true }
|
|
|
|
|
libc = { workspace = true }
|
|
|
|
|
cfg-if = { workspace = true }
|
2023-05-25 23:45:38 -07:00
|
|
|
thiserror = { workspace = true }
|
2023-09-14 13:10:09 -07:00
|
|
|
bytemuck = { workspace = true }
|
2023-09-26 20:18:37 -07:00
|
|
|
num-traits = { workspace = true }
|
2023-10-13 16:59:54 -07:00
|
|
|
num-derive = { workspace = true }
|
2024-03-28 14:11:03 -07:00
|
|
|
const_format = { workspace = true }
|
2025-09-11 01:16:26 -07:00
|
|
|
nix = { workspace = true, features = ["fs", "mount", "user"] }
|
2025-09-10 10:26:41 -07:00
|
|
|
bitflags = { workspace = true }
|