22 lines
496 B
TOML
22 lines
496 B
TOML
# SPDX-License-Identifier: LGPL-3.0-or-later
|
|
# See Notices.txt for copyright information
|
|
[package]
|
|
name = "cpu"
|
|
description = "CPU"
|
|
workspace = "../.."
|
|
readme = "README.md"
|
|
publish = false
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
version.workspace = true
|
|
|
|
[dependencies]
|
|
fayalite.workspace = true
|
|
|
|
[lints.rust]
|
|
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(todo)'] }
|