dendrobates-t-azureus/cache_utils/Cargo.toml
2020-09-29 10:51:24 +02:00

31 lines
915 B
TOML

[package]
name = "cache_utils"
version = "0.1.0"
authors = ["guillaume didier <guillaume.didier@inria.fr>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
polling_serial = { path = "../polling_serial", optional = true }
vga_buffer = { path = "../vga_buffer", optional = true }
cpuid = { path = "../cpuid", default-features = false }
x86_64 = "0.12.2"
static_assertions = "1.1.0"
itertools = { version = "0.9.0", default-features = false }
atomic = { version = "0.5.0" }
nix = { version = "0.18.0", optional = true }
libc = { version = "0.2.77", optional = true }
hashbrown = { version = "0.9.1", optional = true }
[features]
use_std = ["nix", "itertools/use_std", "libc", "cpuid/use_std"]
no_std = ["polling_serial", "vga_buffer", "hashbrown"]
default = ["use_std"]
[[bin]]
name = "cache_utils"
required-features = ["use_std"]