[package]
edition = "2021"
rust-version = "1.88"
name = "aeo-graph-explorer"
version = "0.1.1"
authors = ["Miz Causevic <miz@kineticgain.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "HTTP graph-query service over AEO Protocol crawls. Ingests aeo-crawler JSON Lines, builds an in-memory typed graph, exposes /nodes /neighbors /shortest-path /find-by-claim. Layer 5 of the AEO Reference Stack. Optional audit-stream-py integration via the `audit-stream` feature."
homepage = "https://kineticgain.com/"
documentation = "https://docs.rs/aeo-graph-explorer"
readme = "README.md"
keywords = [
"aeo",
"graph",
"axum",
"petgraph",
"well-known",
]
categories = [
"web-programming::http-server",
"data-structures",
]
license = "MIT"
repository = "https://github.com/mizcausevic-dev/aeo-graph-explorer-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[features]
audit-stream = ["dep:reqwest"]
default = ["audit-stream"]
[lib]
name = "aeo_graph_explorer"
path = "src/lib.rs"
[[bin]]
name = "aeo-graph-explorer"
path = "src/main.rs"
[[test]]
name = "app"
path = "tests/app.rs"
[[test]]
name = "audit_stream"
path = "tests/audit_stream.rs"
[[test]]
name = "graph"
path = "tests/graph.rs"
[[bench]]
name = "graph_build"
path = "benches/graph_build.rs"
harness = false
[dependencies.axum]
version = "0.7"
[dependencies.petgraph]
version = "0.6"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
optional = true
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.tokio]
version = "1.38"
features = ["full"]
[dependencies.tower]
version = "0.5"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.reqwest]
version = "0.12"
features = ["json"]
default-features = false
[dev-dependencies.tokio]
version = "1.38"
features = [
"full",
"test-util",
]
[dev-dependencies.wiremock]
version = "0.6"