# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.74" name = "abscissa_core" version = "0.8.1" authors = ["Tony Arcieri "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = """ Application microframework with support for command-line option parsing, configuration, error handling, logging, and terminal interactions. This crate contains the framework's core functionality. """ homepage = "https://github.com/iqlusioninc/abscissa/" readme = "README.md" keywords = [ "abscissa", "cli", "application", "framework", "service", ] categories = [ "command-line-interface", "config", "rust-patterns", ] license = "Apache-2.0" repository = "https://github.com/iqlusioninc/abscissa/tree/main/core/" [lib] name = "abscissa_core" path = "src/lib.rs" [[test]] name = "component" path = "tests/component.rs" [dependencies.abscissa_derive] version = "0.8" [dependencies.arc-swap] version = "1" optional = true [dependencies.backtrace] version = "0.3" [dependencies.canonical-path] version = "2" [dependencies.clap] version = "4" features = ["derive"] optional = true [dependencies.color-eyre] version = "0.6" optional = true default-features = false [dependencies.fs-err] version = "2" [dependencies.once_cell] version = "1.17" [dependencies.regex] version = "1" optional = true [dependencies.secrecy] version = "0.10" features = ["serde"] optional = true [dependencies.semver] version = "1" optional = true [dependencies.serde] version = "1" features = ["serde_derive"] optional = true [dependencies.termcolor] version = "1" optional = true [dependencies.toml] version = "0.8" optional = true [dependencies.tracing] version = "0.1" optional = true [dependencies.tracing-log] version = "0.2" optional = true [dependencies.tracing-subscriber] version = "0.3" features = [ "fmt", "env-filter", "ansi", "smallvec", "tracing-log", ] optional = true default-features = false [dependencies.wait-timeout] version = "0.2" optional = true [features] application = [ "arc-swap", "config", "trace", "options", "semver/serde", "terminal", ] config = [ "secrets", "serde", "terminal", "toml", ] default = [ "application", "secrets", "testing", ] options = ["clap"] secrets = ["secrecy"] terminal = [ "color-eyre", "termcolor", ] testing = [ "regex", "wait-timeout", ] trace = [ "tracing", "tracing-log", "tracing-subscriber", ]