rotate_backup 0.1.2

Rotate you backups easily
Documentation
# 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 = "2024"
name = "rotate_backup"
version = "0.1.2"
authors = ["Frédéric Vauchelles <frederic.vauchelles@outlook.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rotate you backups easily"
homepage = "https://github.com/fredericvauchelles/rotate_backup"
readme = "README.md"
keywords = [
    "backup",
    "utility",
    "no-std",
]
categories = ["no-std"]
license = "PolyForm-Noncommercial-1.0.0"
repository = "https://github.com/fredericvauchelles/rotate_backup"

[features]
cli = [
    "clap",
    "dep:shlex",
]
default = [
    "std",
    "cli",
]
std = [
    "anyhow/std",
    "chrono/std",
    "clap/std",
    "shlex?/std",
]

[lib]
name = "rotate_backup"
path = "src/lib.rs"

[[bin]]
name = "rotate_backup"
path = "src/main.rs"
required-features = [
    "std",
    "cli",
]

[dependencies.anyhow]
version = "1.0.102"
default-features = false

[dependencies.chrono]
version = "0.4.44"
default-features = false

[dependencies.clap]
version = "4.6.0"
features = [
    "derive",
    "color",
    "help",
    "usage",
    "error-context",
    "suggestions",
]
optional = true
default-features = false

[dependencies.shlex]
version = "1.3.0"
optional = true
default-features = false

[lints.clippy]
alloc_instead_of_core = "deny"
std_instead_of_alloc = "deny"
std_instead_of_core = "deny"