[package]
edition = "2021"
rust-version = "1.88"
name = "aristo-core"
version = "0.1.0"
authors = ["Aretta <hello@aretta.ai>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Aristo SDK core: shared types, .aristo/index.toml schema, B5b verification, language registry."
homepage = "https://github.com/aretta-ai/aristo"
documentation = "https://docs.rs/aristo-core"
readme = "README.md"
keywords = [
"annotation",
"verification",
"intent",
"proof",
"sdk",
]
categories = [
"development-tools",
"parsing",
]
license = "MIT"
repository = "https://github.com/aretta-ai/aristo"
[lib]
name = "aristo_core"
path = "src/lib.rs"
[[example]]
name = "dump-schemas"
path = "examples/dump-schemas.rs"
[[test]]
name = "auth_oauth_e2e"
path = "tests/auth_oauth_e2e.rs"
[[test]]
name = "canon_http_e2e"
path = "tests/canon_http_e2e.rs"
[[test]]
name = "config_fixtures"
path = "tests/config_fixtures.rs"
[[test]]
name = "index_fixtures"
path = "tests/index_fixtures.rs"
[[test]]
name = "schemas"
path = "tests/schemas.rs"
[[test]]
name = "spec_fixtures"
path = "tests/spec_fixtures.rs"
[dependencies.aristo]
version = "0.1.0"
[dependencies.getrandom]
version = "0.2"
[dependencies.globset]
version = "0.4"
[dependencies.proc-macro2]
version = "1.0"
features = ["span-locations"]
[dependencies.schemars]
version = "0.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sha2]
version = "0.10"
[dependencies.syn]
version = "2.0"
features = [
"full",
"extra-traits",
"visit",
]
[dependencies.thiserror]
version = "2.0"
[dependencies.time]
version = "0.3"
features = ["formatting"]
[dependencies.toml]
version = "0.8"
[dependencies.ureq]
version = "3.3"
features = [
"json",
"rustls",
]
default-features = false
[dependencies.walkdir]
version = "2.5"
[dev-dependencies.tempfile]
version = "3.10"
[lints.clippy.all]
level = "deny"
priority = -1
[lints.rust]
unsafe_code = "forbid"