[package]
edition = "2021"
rust-version = "1.75"
name = "silicera"
version = "0.1.1"
authors = ["Silicera Contributors"]
build = false
include = [
"src/**/*",
"tests/**/*",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Hardware-native program specialization for AMD Zen — core discovery, measurement, and HNEP"
homepage = "https://theworker02.github.io/silicera/"
documentation = "https://docs.rs/silicera"
readme = "README.md"
keywords = [
"amd",
"specialization",
"autotuning",
"zen",
"performance",
]
categories = [
"hardware-support",
"development-tools",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/theworker02/silicera"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
counters = []
default = []
tpm = []
[lib]
name = "silicera"
path = "src/lib.rs"
[[test]]
name = "hardware"
path = "tests/hardware.rs"
[[test]]
name = "proptests"
path = "tests/proptests.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4"
[dependencies.indexmap]
version = "2"
features = ["serde"]
[dependencies.once_cell]
version = "1"
[dependencies.parking_lot]
version = "0.12"
[dependencies.raw-cpuid]
version = "11"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"