agentic-identity 0.2.4

Cryptographic identity anchor for AI agents — persistent identity, signed actions, revocable trust
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 = "agentic-identity"
version = "0.2.4"
authors = ["Agentra Labs <contact@agentralabs.tech>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Cryptographic identity anchor for AI agents — persistent identity, signed actions, revocable trust"
homepage = "https://agentralabs.tech"
readme = "README.md"
keywords = [
    "ai",
    "agent",
    "identity",
    "cryptography",
    "trust",
]
categories = [
    "cryptography",
    "authentication",
]
license = "MIT"
repository = "https://github.com/agentralabs/agentic-identity"

[features]
cli = [
    "dep:clap",
    "dep:env_logger",
    "dep:anyhow",
]
default = ["cli"]

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

[[bin]]
name = "aid"
path = "src/bin/aid.rs"
required-features = ["cli"]

[[example]]
name = "basic_identity"
path = "examples/basic_identity.rs"

[[example]]
name = "sign_action"
path = "examples/sign_action.rs"

[[example]]
name = "trust_delegation"
path = "examples/trust_delegation.rs"

[dependencies.anyhow]
version = "1.0"
optional = true

[dependencies.argon2]
version = "0.5"

[dependencies.base64]
version = "0.21"

[dependencies.bincode]
version = "1.3"

[dependencies.bs58]
version = "0.5"

[dependencies.chacha20poly1305]
version = "0.10"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4.4"
features = ["derive"]
optional = true

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

[dependencies.env_logger]
version = "0.10"
optional = true

[dependencies.hex]
version = "0.4"

[dependencies.hkdf]
version = "0.12"

[dependencies.log]
version = "0.4"

[dependencies.rand]
version = "0.8"

[dependencies.rand_core]
version = "0.6"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.sha2]
version = "0.10"

[dependencies.thiserror]
version = "1.0"

[dependencies.x25519-dalek]
version = "2.0"
features = [
    "serde",
    "static_secrets",
]

[dependencies.zeroize]
version = "1.7"
features = ["derive"]

[dev-dependencies.criterion]
version = "0.5"

[dev-dependencies.tempfile]
version = "3.9"