mofa-kernel 0.1.0

MoFA Kernel - Core runtime and microkernel implementation
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 = "2024"
name = "mofa-kernel"
version = "0.1.0"
authors = ["MoFA Contributors <contributors@mofa.org>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MoFA Kernel - Core runtime and microkernel implementation"
homepage = "https://github.com/mofa-org/mofa"
documentation = "https://docs.rs/mofa-kernel"
readme = "README.md"
keywords = [
    "ai",
    "agent",
    "microkernel",
    "trait",
    "async",
]
categories = [
    "development-tools",
    "asynchronous",
]
license = "Apache-2.0"
repository = "https://github.com/mofa-org/mofa"

[features]
config = [
    "dep:config",
    "dep:regex",
    "dep:serde_yaml",
    "dep:toml",
]
default = []

[lib]
name = "mofa_kernel"
path = "src/lib.rs"

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.bincode]
version = "1.3"

[dependencies.config]
version = "0.14"
features = [
    "toml",
    "json",
    "yaml",
    "ini",
    "ron",
    "json5",
]
optional = true

[dependencies.futures]
version = "0.3"

[dependencies.regex]
version = "1"
optional = true

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.serde_yaml]
version = "0.9"
optional = true

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1"
features = [
    "full",
    "rt-multi-thread",
    "sync",
]

[dependencies.toml]
version = "0.8"
optional = true

[dependencies.tracing]
version = "0.1"

[dependencies.uuid]
version = "1.7"
features = [
    "v4",
    "v7",
    "serde",
    "v4",
]

[dev-dependencies.tempfile]
version = "3"

[lints.rust]
dead_code = "allow"
unexpected_cfgs = "allow"
unused = "allow"
unused_variables = "allow"