# 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" name = "ttycarousel" version = "0.1.4" authors = ["Sergei S. "] description = "Console animations for Rust" readme = "README.md" keywords = [ "terminal", "tty", "console", "animation", ] license = "Apache-2.0" repository = "https://github.com/divi255/ttycarousel" resolver = "2" [package.metadata.docs.rs] features = [ "sync", "tokio1", ] [package.metadata.playground] features = [ "sync", "tokio1", ] [lib] name = "ttycarousel" path = "src/lib.rs" [[example]] name = "example" path = "examples/example.rs" required-features = ["sync"] [[example]] name = "example_async" path = "examples/example_async.rs" required-features = ["tokio1"] [dependencies.atty] version = "0.2.14" [dependencies.lazy_static] version = "1.4.0" [dependencies.tokio] version = "1.17.0" features = [ "io-std", "io-util", "rt", "time", "sync", ] optional = true [dev-dependencies.tokio] version = "1.17.0" features = ["full"] [features] sync = [] tokio1 = ["tokio"]