[package]
edition = "2024"
rust-version = "1.85"
name = "agentlink-domain"
version = "0.0.2"
authors = ["The agentlink contributors"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Domain model for agentlink: one brain for every AI coding agent"
homepage = "https://github.com/fialhosoft/agentlink"
readme = false
keywords = [
"ai",
"agents",
"claude",
"cursor",
"codex",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/fialhosoft/agentlink"
[features]
testing = []
[lib]
name = "agentlink_domain"
path = "src/lib.rs"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.toml]
version = "0.9"
[lints.clippy]
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
missing_debug_implementations = "warn"
unused_qualifications = "warn"