tpt-archon-kernel 0.1.0

Capability-based microkernel (user-space first): async scheduler, IPC, unified memory management
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[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