Files
RedBear-OS/Cargo.toml
T
Akshit Gaur 65aa9e1272 Bump version
2026-04-06 14:46:33 +05:30

27 lines
782 B
TOML

[package]
name = "libredox"
authors = ["4lDO2 <4lDO2@protonmail.com>"]
version = "0.1.16"
edition = "2021"
license = "MIT"
description = "Redox stable ABI"
repository = "https://gitlab.redox-os.org/redox-os/libredox.git"
exclude = ["target"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["base", "call", "std", "redox_syscall", "protocol"]
base = ["libc"]
call = ["base"]
std = ["base"]
protocol = ["plain", "bitflags", "redox_syscall"]
mkns = ["ioslice"]
[dependencies]
bitflags = { version = "2", optional = true }
libc = { version = "0.2", optional = true }
redox_syscall = { version = "0.7", optional = true }
ioslice = { version = "0.6", optional = true }
plain = { version = "0.2", optional = true }