inkling-loader 0.2.2

Reveal arbitrary ASCII art as a progress indicator by choosing the order its glyphs appear.
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 = "2021"
rust-version = "1.74"
name = "inkling-loader"
version = "0.2.2"
authors = ["Cody Taylor"]
build = false
exclude = ["/assets/inkling3d.txt"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reveal arbitrary ASCII art as a progress indicator by choosing the order its glyphs appear."
homepage = "https://codytaylor.dev/inkling"
readme = "README.md"
keywords = [
    "progress",
    "progress-bar",
    "ascii-art",
    "terminal",
    "animation",
]
categories = [
    "command-line-interface",
    "visualization",
]
license = "MIT"
repository = "https://github.com/codizzler/inkling"

[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
    "--cfg",
    "docsrs",
]

[features]
default = [
    "terminal",
    "unicode",
]
terminal = [
    "dep:crossterm",
    "dep:libc",
]
unicode = ["dep:unicode-width"]

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

[[example]]
name = "download"
path = "examples/download.rs"
required-features = ["terminal"]

[[example]]
name = "dragon"
path = "examples/dragon.rs"
required-features = ["terminal"]

[[example]]
name = "loader"
path = "examples/loader.rs"
required-features = ["terminal"]

[dependencies.crossterm]
version = "0.28"
features = ["windows"]
optional = true
default-features = false

[dependencies.unicode-width]
version = "0.1"
optional = true

[target."cfg(unix)".dependencies.libc]
version = "0.2"
optional = true