[package]
edition = "2021"
rust-version = "1.70"
name = "xcom-rs"
version = "0.1.25"
authors = ["tumf <tumf@users.noreply.github.com>"]
build = false
include = [
"Cargo.toml",
"README.md",
"LICENSE",
"src/**",
"tests/**",
"examples/**",
"docs/**",
"skills/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agent-friendly X.com CLI with introspection, auth, billing, tweets, and embedded skills"
homepage = "https://github.com/tumf/xcom-rs"
documentation = "https://docs.rs/xcom-rs"
readme = "README.md"
keywords = [
"cli",
"automation",
"agents",
"twitter",
"xcom",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/tumf/xcom-rs"
[features]
env-tests = []
[lib]
name = "xcom_rs"
path = "src/lib.rs"
[[bin]]
name = "xcom-rs"
path = "src/main.rs"
[[test]]
name = "auth_billing_test"
path = "tests/auth_billing_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "tweets_integration_test"
path = "tests/tweets_integration_test.rs"
[[test]]
name = "xdg_paths_test"
path = "tests/xdg_paths_test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.dirs]
version = "5.0"
[dependencies.hex]
version = "0.4"
[dependencies.rusqlite]
version = "0.32"
features = ["bundled"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.tempfile]
version = "3.10"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"json",
"env-filter",
]
[dependencies.uuid]
version = "1.0"
features = [
"v4",
"serde",
]
[dev-dependencies.mockito]
version = "1.5"