[package]
edition = "2021"
rust-version = "1.74"
name = "tpt-archon-kernel"
version = "0.1.0"
authors = ["TPT Solutions"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Capability-based microkernel (user-space first): async scheduler, IPC, unified memory management"
homepage = "https://github.com/tpt-solutions/tpt-archon"
documentation = "https://docs.rs/tpt-archon-kernel"
readme = "README.md"
keywords = [
"microkernel",
"async",
"scheduler",
"capabilities",
"io-uring",
]
categories = [
"asynchronous",
"concurrency",
"os",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/tpt-solutions/tpt-archon"
[features]
default = ["std"]
io-uring-backend = [
"dep:io-uring",
"std",
]
mmap = [
"tpt-archon-bridge/mmap",
"std",
]
std = [
"tpt-archon-core/std",
"tpt-archon-bridge/std",
]
[lib]
name = "tpt_archon_kernel"
path = "src/lib.rs"
[dependencies.io-uring]
version = "0.7"
optional = true
[dependencies.tpt-archon-bridge]
version = "0.1.0"
default-features = false
[dependencies.tpt-archon-core]
version = "0.1.0"
default-features = false