[package]
edition = "2024"
rust-version = "1.95"
name = "topcoat-cli"
version = "0.0.4"
authors = ["Julien Scholz <hello@julien-scholz.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "topcoat"
description = "A modular, batteries-included Rust web framework for server-rendered apps."
readme = "README.md"
keywords = [
"web",
"framework",
"ssr",
"html",
"server",
]
categories = [
"web-programming",
"web-programming::http-server",
]
license = "MIT"
repository = "https://github.com/tokio-rs/topcoat"
resolver = "2"
[package.metadata.cargo-udeps.ignore]
development = ["topcoat"]
[lib]
name = "topcoat_cli"
path = "src/lib.rs"
[[bin]]
name = "cargo-topcoat"
path = "src/bin/cargo_topcoat.rs"
[[bin]]
name = "topcoat"
path = "src/bin/topcoat.rs"
[dependencies.axum]
version = "0.8.8"
features = ["ws"]
[dependencies.clap]
version = "4.6.0"
features = ["derive"]
[dependencies.console]
version = "0.16"
[dependencies.dialoguer]
version = "0.12"
default-features = false
[dependencies.futures-util]
version = "0.3"
[dependencies.glob]
version = "0.3.3"
[dependencies.indicatif]
version = "0.18"
[dependencies.notify]
version = "8.1.0"
[dependencies.proc-macro2]
version = "1.0.106"
features = ["span-locations"]
[dependencies.serde_json]
version = "1"
[dependencies.syn]
version = "2.0.117"
[dependencies.tokio]
version = "1.51.1"
features = [
"rt-multi-thread",
"macros",
"process",
"signal",
"io-util",
"time",
"sync",
]
[dependencies.topcoat-asset]
version = "0.0.4"
features = ["bundler"]
[dependencies.topcoat-core]
version = "0.0.4"
features = ["build"]
[dependencies.topcoat-core-grammar]
version = "0.0.4"
features = ["pretty"]
[dependencies.topcoat-font-grammar]
version = "0.0.4"
features = [
"fontsource",
"pretty",
]
[dependencies.topcoat-ui]
version = "0.0.4"
[dependencies.topcoat-view-grammar]
version = "0.0.4"
features = ["pretty"]
[dev-dependencies]
[lints.clippy]
mod_module_files = "deny"
too_many_lines = "allow"
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
[lints.rustdoc]
broken_intra_doc_links = "deny"