[package]
edition = "2021"
name = "noether-core"
version = "0.6.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Noether core: type system, effects, content-addressed stage schema, Ed25519 signing, stdlib"
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"
[lib]
name = "noether_core"
path = "src/lib.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "property_tests"
path = "tests/property_tests.rs"
[[test]]
name = "stdlib_validation"
path = "tests/stdlib_validation.rs"
[dependencies.ed25519-dalek]
version = "2"
features = [
"serde",
"rand_core",
]
[dependencies.hex]
version = "0.4"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_jcs]
version = "0.2"
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.11"
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1"
[target.'cfg(target_arch = "wasm32")'.dependencies.getrandom]
version = "0.2"
features = ["js"]