asterinas/kernel/libs/int-to-c-enum/Cargo.toml

21 lines
540 B
TOML
Raw Normal View History

2023-04-17 07:39:12 +00:00
[package]
name = "int-to-c-enum"
version = "0.1.0"
2025-12-08 12:49:46 +00:00
edition = "2024"
license = "MPL-2.0"
readme = "README.md"
description = "TryFromInt - A convenient derive macro for converting an integer to an enum"
repository = "https://github.com/asterinas/asterinas"
2023-04-17 07:39:12 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
int-to-c-enum-derive = { path = "derive", optional = true, version = "0.1.0"}
2023-04-17 07:39:12 +00:00
[features]
default = ["derive"]
derive = ["int-to-c-enum-derive"]
2025-01-24 16:56:07 +00:00
[lints]
workspace = true