dendrobates-t-azureus/cpuid/Cargo.toml

20 lines
420 B
TOML
Raw Permalink Normal View History

2020-05-27 14:00:19 +02:00
[package]
name = "cpuid"
version = "0.1.0"
authors = ["GuillaumeDIDIER <guillaume.didier95@hotmail.fr>"]
2024-06-24 09:39:28 +02:00
edition = "2021"
2020-05-27 14:00:19 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-05-27 11:51:13 +02:00
itertools = { version = "0.13.0", default-features = false }
2020-05-27 14:00:19 +02:00
[features]
2020-05-28 10:01:22 +02:00
use_std = ["itertools/use_std"]
2020-05-27 14:00:19 +02:00
2020-05-28 10:01:22 +02:00
default = ["use_std"]
2020-05-27 14:00:19 +02:00
[[bin]]
name = "cpuid"
2020-05-28 10:01:22 +02:00
required-features = ["use_std"]