[package]
edition = "2024"
rust-version = "1.85"
name = "rtango"
version = "0.3.1"
authors = ["aenadgrleey <aenadgrleey@protonmail.com>"]
build = false
exclude = [
".github/",
".rtango/",
"demo/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Package manager for AI agent skills, agents, and system instruction files"
homepage = "https://github.com/aenadgrleey/rtango"
documentation = "https://docs.rs/rtango"
readme = "README.md"
keywords = [
"ai",
"agents",
"claude",
"copilot",
"skills",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/aenadgrleey/rtango"
[lib]
name = "rtango"
path = "src/lib.rs"
[[bin]]
name = "rtango"
path = "src/main.rs"
[[test]]
name = "add"
path = "tests/add.rs"
[[test]]
name = "ambiguity"
path = "tests/ambiguity.rs"
[[test]]
name = "claude_code"
path = "tests/claude_code.rs"
[[test]]
name = "codex"
path = "tests/codex.rs"
[[test]]
name = "collection"
path = "tests/collection.rs"
[[test]]
name = "collection_conflict"
path = "tests/collection_conflict.rs"
[[test]]
name = "copilot"
path = "tests/copilot.rs"
[[test]]
name = "dispatcher"
path = "tests/dispatcher.rs"
[[test]]
name = "engine"
path = "tests/engine.rs"
[[test]]
name = "frontmatter"
path = "tests/frontmatter.rs"
[[test]]
name = "init"
path = "tests/init.rs"
[[test]]
name = "opencode"
path = "tests/opencode.rs"
[[test]]
name = "own"
path = "tests/own.rs"
[[test]]
name = "parse"
path = "tests/parse.rs"
[[test]]
name = "pi"
path = "tests/pi.rs"
[[test]]
name = "plain"
path = "tests/plain.rs"
[[test]]
name = "status"
path = "tests/status.rs"
[[test]]
name = "sync"
path = "tests/sync.rs"
[[test]]
name = "wander"
path = "tests/wander.rs"
[[test]]
name = "write"
path = "tests/write.rs"
[dependencies.anyhow]
version = "1"
[dependencies.blake3]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.dirs]
version = "5"
[dependencies.flate2]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_yml]
version = "0.0.12"
[dependencies.tar]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.ureq]
version = "2"
features = ["json"]
[dev-dependencies.tempfile]
version = "3"