dendrobates-t-azureus/cpuid/Cargo.toml
2020-05-27 14:00:19 +02:00

23 lines
511 B
TOML

[package]
name = "cpuid"
version = "0.1.0"
authors = ["GuillaumeDIDIER <guillaume.didier95@hotmail.fr>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
itertools = { version = "0.9.0", default-features = false }
#cstr_core = {version = "0.2.0", optional = true, features = ["alloc"] }
[features]
std = ["itertools/use_std"]
no_std = [#"cstr_core/alloc"
]
default = ["std"]
[[bin]]
name = "cpuid"
required-features = ["std"]