[package]
edition = "2024"
name = "anytype_rs"
version = "0.0.3"
authors = ["Lane Sawyer <github@lanesawyer.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust client library and CLI for the Anytype API"
readme = "README.md"
keywords = [
"anytype",
"api",
"client",
"cli",
]
categories = [
"api-bindings",
"command-line-interface",
]
license = "GPL-3.0"
repository = "https://github.com/lanesawyer/anytype_rs"
[lib]
name = "anytype_rs"
path = "src/lib.rs"
[[bin]]
name = "anytype"
path = "src/cli/main.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.anyhow]
version = "1.0.98"
[dependencies.clap]
version = "4.5.23"
features = ["derive"]
[dependencies.dirs]
version = "6.0.0"
[dependencies.reqwest]
version = "0.12.9"
features = ["json"]
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.thiserror]
version = "2.0.12"
[dependencies.tokio]
version = "1.45.1"
features = ["full"]
[dependencies.tracing]
version = "0.1.41"
[dependencies.tracing-subscriber]
version = "0.3.19"
features = ["env-filter"]