[package]
edition = "2024"
name = "hedos-kernel"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "The hedos kernel: model records, registry, discovery, install planning, and resolution."
homepage = "https://hedos.ai"
documentation = "https://hedos.ai/docs"
readme = false
license = "MIT"
repository = "https://github.com/theiskaa/hedos"
[lib]
name = "kernel"
path = "src/lib.rs"
[[test]]
name = "artifacts"
path = "tests/artifacts.rs"
[[test]]
name = "capabilities"
path = "tests/capabilities.rs"
[[test]]
name = "chat"
path = "tests/chat.rs"
[[test]]
name = "discovery"
path = "tests/discovery.rs"
[[test]]
name = "discovery_scanners"
path = "tests/discovery_scanners.rs"
[[test]]
name = "discovery_service"
path = "tests/discovery_service.rs"
[[test]]
name = "habitat"
path = "tests/habitat.rs"
[[test]]
name = "hf_scanner"
path = "tests/hf_scanner.rs"
[[test]]
name = "identification_cache"
path = "tests/identification_cache.rs"
[[test]]
name = "identify"
path = "tests/identify.rs"
[[test]]
name = "identity"
path = "tests/identity.rs"
[[test]]
name = "install_events"
path = "tests/install_events.rs"
[[test]]
name = "install_plan"
path = "tests/install_plan.rs"
[[test]]
name = "install_reference"
path = "tests/install_reference.rs"
[[test]]
name = "install_selection"
path = "tests/install_selection.rs"
[[test]]
name = "jobs"
path = "tests/jobs.rs"
[[test]]
name = "lm_studio_scanner"
path = "tests/lm_studio_scanner.rs"
[[test]]
name = "loose_file_scanner"
path = "tests/loose_file_scanner.rs"
[[test]]
name = "manifests"
path = "tests/manifests.rs"
[[test]]
name = "modality_hints"
path = "tests/modality_hints.rs"
[[test]]
name = "param_form"
path = "tests/param_form.rs"
[[test]]
name = "persistence"
path = "tests/persistence.rs"
[[test]]
name = "pipelines"
path = "tests/pipelines.rs"
[[test]]
name = "profiles"
path = "tests/profiles.rs"
[[test]]
name = "records"
path = "tests/records.rs"
[[test]]
name = "registry"
path = "tests/registry.rs"
[[test]]
name = "resolution"
path = "tests/resolution.rs"
[[test]]
name = "tools"
path = "tests/tools.rs"
[[test]]
name = "wire_types"
path = "tests/wire_types.rs"
[dependencies.base64]
version = "0.22"
[dependencies.hex]
version = "0.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "1"
[dev-dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.serde_json]
version = "1"