nbr 0.4.3

CLI for NoneBot2 - A Rust implementation
Documentation
[package]
name = "nbr"
version = "0.4.3"
edition = "2024"
description = "CLI for NoneBot2 - A Rust implementation"
license = "MIT"
repository = "https://github.com/nonebot/nbr"
readme = "README.md"
keywords = ["nonebot", "cli", "chatbot", "bot", "nbr"]
categories = ["command-line-utilities"]

[package.metadata]
authors = [{ name = "fllesser", email = "fllessive@gmail.com" }]

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

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

# Async runtime
tokio = { version = "1.48.0", features = [
  "signal",
  "process",
  "rt-multi-thread",
  "macros",
] }

# HTTP client
reqwest = { version = "0.12.27", features = [
  "json",
  "rustls-tls",
  "stream",
], default-features = false }

# Serialization
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.146"
# serde_yaml = "0.9"

# TOML handling
toml = "0.9.8"

# Terminal UI and progress bars
indicatif = "0.18.3"
console = "0.16.2"
dialoguer = "0.12"

# Error handling
anyhow = "1.0.100"
thiserror = "2.0.17"

# Git operations
# git2 = { version = "0.20.2", default-features = false }

# Directory management
directories = "6.0"

# Regex support
regex = "1.12"

# File watching
notify = "8.2.0"

# System information
sysinfo = { version = "0.37.2", features = ["disk"] }

# Futures utilities
futures-util = "0.3"

# Logging
tracing = "0.1.44"
tracing-subscriber = { version = "0.3.22", features = [
  "env-filter",
  "time",
  "ansi",
] }

toml_edit = "0.24.0"
tracing-core = "0.1.36"
ansi_term = "0.12"
strum = { version = "0.27.2", features = ["derive"] }

[dev-dependencies]
tempfile = "3.23"
insta = { version = "1.42.1", features = ["yaml", "redactions"] }

[profile.release]
lto = true
codegen-units = 1
panic = "abort"