[package]
edition = "2024"
name = "typub"
version = "0.1.1"
build = false
include = [
"/src/**",
"/Cargo.toml",
"/LICENSE",
"/README.md",
"/typub.template.toml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Universal publishing tool that converts Typst content to multiple platforms (Ghost, WordPress, Dev.to, Notion, etc.)"
homepage = "https://github.com/lucifer1004/typub"
readme = "README.md"
keywords = [
"typst",
"publishing",
"markdown",
"content",
]
categories = [
"command-line-utilities",
"text-processing",
]
license = "MIT"
repository = "https://github.com/lucifer1004/typub"
[package.metadata.release]
pre-release-commit-message = "chore: release typub {{version}}"
[features]
default = []
[lib]
name = "typub"
path = "src/lib.rs"
[[bin]]
name = "typub"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.axum]
version = "0.8"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.comfy-table]
version = "7"
[dependencies.crossterm]
version = "0.29"
[dependencies.dotenvy]
version = "0.15"
[dependencies.notify]
version = "8"
[dependencies.open]
version = "5"
[dependencies.regex]
version = "1"
[dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tower-http]
version = "0.6"
features = [
"cors",
"trace",
]
[dependencies.typub-config]
version = "0.1"
[dependencies.typub-core]
version = "0.1"
[dependencies.typub-engine]
version = "0.1"
[dependencies.typub-storage]
version = "0.1"
[dependencies.typub-tui]
version = "0.1"
[dependencies.typub-ui]
version = "0.1"
[dev-dependencies.insta]
version = "1"
[dev-dependencies.tempfile]
version = "3.25.0"
[dev-dependencies.tokio]
version = "1"
features = [
"full",
"test-util",
]
[dev-dependencies.typub-adapter-astro]
version = "0.1"
[dev-dependencies.typub-adapter-confluence]
version = "0.1"
[dev-dependencies.typub-adapter-copypaste]
version = "0.1"
[dev-dependencies.typub-adapter-devto]
version = "0.1"
[dev-dependencies.typub-adapter-ghost]
version = "0.1"
[dev-dependencies.typub-adapter-notion]
version = "0.1"
[dev-dependencies.typub-adapter-wordpress]
version = "0.1"
[dev-dependencies.typub-adapters-core]
version = "0.1"
[dev-dependencies.typub-html]
version = "0.1"
[dev-dependencies.wiremock]
version = "0.6"
[lints.clippy]
expect_used = "deny"
unwrap_used = "deny"