[package]
edition = "2024"
name = "dsc-rs"
version = "0.10.21"
authors = ["Marcus Baw <marcus@bawmedical.co.uk>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Discourse CLI tool for managing multiple Discourse forums: track installs, run upgrades over SSH, manage emojis, sync topics and categories as Markdown, and more."
homepage = "https://github.com/pacharanero/dsc"
readme = "README.md"
keywords = [
"discourse",
"cli",
"forum",
"sysadmin",
"ssh",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/pacharanero/dsc"
[package.metadata.wix]
upgrade-guid = "1E1DDAAC-E772-481A-9806-30A5B3564BA2"
path-guid = "47EBE96D-DB77-42D0-B8FC-3442D69B8947"
license = false
eula = false
[lib]
name = "dsc"
path = "src/lib.rs"
[[bin]]
name = "dsc"
path = "src/main.rs"
[[test]]
name = "add-test"
path = "tests/add-test.rs"
[[test]]
name = "backup-test"
path = "tests/backup-test.rs"
[[test]]
name = "category-test"
path = "tests/category-test.rs"
[[test]]
name = "completions-test"
path = "tests/completions-test.rs"
[[test]]
name = "emoji-test"
path = "tests/emoji-test.rs"
[[test]]
name = "group-test"
path = "tests/group-test.rs"
[[test]]
name = "import-test"
path = "tests/import-test.rs"
[[test]]
name = "list-test"
path = "tests/list-test.rs"
[[test]]
name = "palette-test"
path = "tests/palette-test.rs"
[[test]]
name = "plugin-test"
path = "tests/plugin-test.rs"
[[test]]
name = "sar-test"
path = "tests/sar-test.rs"
[[test]]
name = "setting-test"
path = "tests/setting-test.rs"
[[test]]
name = "theme-test"
path = "tests/theme-test.rs"
[[test]]
name = "topic-test"
path = "tests/topic-test.rs"
[[test]]
name = "update-test"
path = "tests/update-test.rs"
[[test]]
name = "version-test"
path = "tests/version-test.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.base64]
version = "0.22"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.clap_complete]
version = "4.5"
[dependencies.clap_mangen]
version = "0.3"
[dependencies.csv]
version = "1.4"
[dependencies.indicatif]
version = "0.18"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
"multipart",
"form",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.slug]
version = "0.1"
[dependencies.toml]
version = "1.0"
[dev-dependencies.tempfile]
version = "3.26"
[dev-dependencies.uuid]
version = "1.21"
features = ["v4"]
[profile.dist]
lto = "thin"
inherits = "release"