int-to-c-enum 0.1.0

TryFromInt - A convenient derive macro for converting an integer to an enum
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "int-to-c-enum"
version = "0.1.0"
edition = "2021"
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"

# 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"}

[features]
default = ["derive"]
derive = ["int-to-c-enum-derive"]