diff --git a/Cargo.toml b/Cargo.toml index 5ecde91..2151569 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,28 +10,44 @@ authors = ["Val Lorentz"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -better-panic = "0.3.0" -clap = { version = "4.4.5", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] } -color-eyre = "0.6.2" -config = "0.13.3" -crossterm = { version = "0.27.0", features = ["serde", "event-stream"] } -derive_deref = "1.1.1" -directories = "5.0.1" + +# Async futures = "0.3.28" -human-panic = "1.2.0" -inventory = "0.3" -json5 = "0.4.1" -lazy_static = "1.4.0" -libc = "0.2.148" -log = "0.4.20" -pretty_assertions = "1.4.0" -ratatui = { version = "0.23.0", features = ["serde", "macros"] } -serde = { version = "1.0.188", features = ["derive"] } -serde_json = "1.0.107" -signal-hook = "0.3.17" -strip-ansi-escapes = "0.2.0" tokio = { version = "1.32.0", features = ["full"] } tokio-util = "0.7.9" tracing = "0.1.37" tracing-error = "0.2.0" tracing-subscriber = { version = "0.3.17", features = ["env-filter", "serde"] } + +# CLI +clap = { version = "4.4.5", features = ["derive", "cargo", "wrap_help", "unicode", "string", "unstable-styles"] } + +# Config +config = "0.13.3" +derive_deref = "1.1.1" +directories = "5.0.1" +json5 = "0.4.1" +serde = { version = "1.0.188", features = ["derive"] } +serde_json = "1.0.107" + +# Error handling +better-panic = "0.3.0" +color-eyre = "0.6.2" +human-panic = "1.2.0" + +# Internal +inventory = "0.3" +lazy_static = "1.4.0" +libc = "0.2.148" +signal-hook = "0.3.17" + +# Misc +log = "0.4.20" + +# UI +crossterm = { version = "0.27.0", features = ["serde", "event-stream"] } +ratatui = { version = "0.23.0", features = ["serde", "macros"] } +strip-ansi-escapes = "0.2.0" + +[dev-dependencies] +pretty_assertions = "1.4.0"