[package]
edition = "2024"
rust-version = "1.85.0"
name = "starbase"
version = "0.10.9"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Framework for building performant command line applications and developer tools."
readme = "README.md"
license = "MIT"
repository = "https://github.com/moonrepo/starbase"
resolver = "2"
[package.metadata.docs.rs]
all-features = true
[features]
default = ["tracing"]
log-compat = ["dep:tracing-log"]
tracing = [
"dep:tracing",
"dep:tracing-chrome",
"dep:tracing-subscriber",
]
[lib]
name = "starbase"
path = "src/lib.rs"
[[test]]
name = "app_test"
path = "tests/app_test.rs"
[dependencies.async-trait]
version = "0.1.89"
[dependencies.chrono]
version = "0.4.43"
features = [
"clock",
"std",
]
default-features = false
[dependencies.miette]
version = "7.6.0"
features = ["fancy"]
[dependencies.starbase_styles]
version = "0.6.6"
features = ["theme"]
[dependencies.tokio]
version = "1.49.0"
features = [
"io-util",
"rt",
"sync",
]
default-features = false
[dependencies.tracing]
version = "0.1.44"
optional = true
[dependencies.tracing-chrome]
version = "0.7.2"
optional = true
[dependencies.tracing-log]
version = "0.2.0"
features = [
"log-tracer",
"std",
]
optional = true
default-features = false
[dependencies.tracing-subscriber]
version = "0.3.22"
features = [
"ansi",
"env-filter",
"fmt",
]
optional = true
default-features = false