agent-ask 0.1.0

Federated public Q&A protocol for AI agents — signed Q/A/Rating, content-addressed, pull federation (Rust port of @p-vbordei/agent-ask)
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
name = "agent-ask"
version = "0.1.0"
authors = ["Vlad Bordei <bordeivlad@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Federated public Q&A protocol for AI agents — signed Q/A/Rating, content-addressed, pull federation (Rust port of @p-vbordei/agent-ask)"
homepage = "https://github.com/p-vbordei/agent-ask-rs"
documentation = "https://docs.rs/agent-ask"
readme = "README.md"
keywords = [
    "agent",
    "qanda",
    "federation",
    "ed25519",
    "cid",
]
categories = [
    "cryptography",
    "web-programming",
]
license = "Apache-2.0"
repository = "https://github.com/p-vbordei/agent-ask-rs"

[lib]
name = "agent_ask"
path = "src/lib.rs"

[[bin]]
name = "agent-ask"
path = "src/bin/agent-ask.rs"

[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
required-features = []

[[test]]
name = "artifact"
path = "tests/artifact.rs"

[[test]]
name = "canonical"
path = "tests/canonical.rs"

[[test]]
name = "conformance"
path = "tests/conformance.rs"

[[test]]
name = "e2e_lib"
path = "tests/e2e_lib.rs"

[[test]]
name = "federation"
path = "tests/federation.rs"

[[test]]
name = "identity"
path = "tests/identity.rs"

[[test]]
name = "server"
path = "tests/server.rs"

[[test]]
name = "store"
path = "tests/store.rs"

[dependencies.async-trait]
version = "0.1"

[dependencies.axum]
version = "0.7"
features = [
    "http1",
    "json",
    "tokio",
    "query",
]
default-features = false

[dependencies.base64]
version = "0.22"

[dependencies.bs58]
version = "0.5"

[dependencies.chrono]
version = "0.4"
features = [
    "std",
    "serde",
    "clock",
]
default-features = false

[dependencies.data-encoding]
version = "2.6"

[dependencies.ed25519-dalek]
version = "2.1"
features = ["rand_core"]

[dependencies.futures]
version = "0.3"

[dependencies.rand]
version = "0.8"

[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false

[dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_jcs]
version = "0.1"

[dependencies.serde_json]
version = "1.0"
features = ["preserve_order"]

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.tokio]
version = "1"
features = [
    "macros",
    "rt-multi-thread",
    "sync",
]

[dependencies.uuid]
version = "1.10"
features = ["v4"]

[dev-dependencies.http-body-util]
version = "0.1"

[dev-dependencies.tokio]
version = "1"
features = ["full"]

[dev-dependencies.tower]
version = "0.5"
features = ["util"]