prax-cli 0.3.2

CLI tool for the Prax ORM
Documentation
[package]
name = "prax-cli"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
description = "CLI tool for the Prax ORM"
documentation = "https://docs.rs/prax-cli"
keywords = ["orm", "cli", "database", "migrations", "code-generation"]
categories = ["command-line-utilities", "database"]

[[bin]]
name = "prax"
path = "src/main.rs"

[dependencies]
# CLI framework
clap = { version = "4.5", features = ["derive", "env", "color"] }

# Async runtime
tokio = { workspace = true, features = ["macros", "rt-multi-thread", "fs"] }

# Error handling
miette = { workspace = true, features = ["fancy"] }
thiserror = { workspace = true }

# Output formatting
owo-colors = "4.1"

# Configuration
toml = "0.8"
serde = { workspace = true }
serde_json = { workspace = true }

# Date/time for migrations
chrono = { workspace = true }

# Regex for parsing
regex-lite = { workspace = true }

# URL parsing
url = "2.5"

# UUID generation for seeding
uuid = { workspace = true, features = ["v4"] }

# Internal crates
prax-schema = { workspace = true }
prax-codegen = { workspace = true }
prax-migrate = { workspace = true }

[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = { workspace = true }

[features]
default = []
postgres = []
mysql = []
sqlite = []