[package]
edition = "2024"
rust-version = "1.95"
name = "px-cli"
version = "0.1.6"
authors = ["ApiZero <api@zerois.cn>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Phoenix-rs application CLI (px new / make / migrate / dev)"
homepage = "https://apizero.cn/"
readme = "README.md"
keywords = [
"web",
"framework",
"cli",
"laravel",
"react",
]
categories = [
"command-line-utilities",
"development-tools",
"web-programming",
]
license = "MIT"
repository = "https://github.com/MageGojo/Phoenix-rs"
[lib]
name = "phoenix_cli"
path = "src/lib.rs"
[[bin]]
name = "px"
path = "src/main.rs"
[[test]]
name = "scaffold_commands"
path = "tests/scaffold_commands.rs"
[dependencies.notify]
version = "7"
[dependencies.phoenix-release]
version = "0.1.2"
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[target."cfg(unix)".dependencies.nix]
version = "0.30"
features = [
"process",
"signal",
]
[lints.clippy]
all = "warn"
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"