[package]
edition = "2021"
rust-version = "1.94"
name = "cuttlefish"
version = "0.0.5"
authors = [
"Michael-F-Bryan <michaelfbryan@gmail.com>",
"Kartik Thakore <kartik@thakore.ai>",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native tooling for agents: a local wasm runtime that runs delegated jobs against local models"
homepage = "https://cuttlefishvm.github.io/"
documentation = "https://docs.rs/cuttlefish"
readme = "README.md"
keywords = [
"agents",
"wasm",
"llm",
"local-first",
"sandbox",
]
categories = ["wasm"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/cuttlefishvm/cuttlefish-vm.git"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "cuttlefish"
path = "src/lib.rs"
[[bin]]
name = "cuttlefish"
path = "src/main.rs"
[[test]]
name = "build"
path = "tests/build.rs"
[[test]]
name = "catalog_concurrency"
path = "tests/catalog_concurrency.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "support"
path = "tests/support.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.cuttlefish-abi]
version = "0.0.5"
[dependencies.cuttlefish-core]
version = "0.0.5"
[dependencies.cuttlefish-host]
version = "0.0.5"
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"stream",
]
default-features = false
[dependencies.serde_json]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"time",
"net",
"io-util",
]
[dependencies.wasmtime]
version = "47"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.uuid]
version = "1"
features = ["v4"]