[package]
edition = "2021"
name = "noether-engine"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Noether composition engine: Lagrange graph AST, type checker, planner, executor, semantic index, LLM-backed composition agent"
homepage = "https://github.com/alpibrusl/noether"
readme = false
keywords = [
"agent",
"llm",
"composition",
"pipeline",
"workflow",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "EUPL-1.2"
repository = "https://github.com/alpibrusl/noether"
[features]
default = ["native"]
native = [
"dep:reqwest",
"dep:rusqlite",
"dep:arrow",
"dep:base64",
]
[lib]
name = "noether_engine"
path = "src/lib.rs"
[[test]]
name = "index_integration"
path = "tests/index_integration.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "nix_e2e"
path = "tests/nix_e2e.rs"
[dependencies.arrow]
version = "54"
features = ["ipc"]
optional = true
default-features = false
[dependencies.base64]
version = "0.22"
optional = true
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.ed25519-dalek]
version = "2"
features = [
"serde",
"rand_core",
]
[dependencies.hex]
version = "0.4"
[dependencies.noether-core]
version = "0.3"
[dependencies.noether-store]
version = "0.3"
[dependencies.rand]
version = "0.8"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
"form",
"rustls",
]
optional = true
default-features = false
[dependencies.rusqlite]
version = "0.39.0"
features = ["bundled"]
optional = true
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dependencies.wasm-bindgen]
version = "0.2"
optional = true
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]