# 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 = "followfile" version = "0.2.1" authors = ["Yuki Yamaura "] build = false include = [ "src/**/*.rs", "examples/**/*.rs", "README.md", "LICENSE", ] autobins = false autoexamples = false autotests = false autobenches = false description = "Provides Reader library for following file changes." homepage = "https://github.com/yamaura/followfile" readme = "README.md" keywords = [] categories = [] license = "MIT" repository = "https://github.com/yamaura/followfile" [package.metadata.docs.rs] all-features = true rustdoc-args = [ "--cfg", "docsrs", ] [package.metadata.release] pre-release-commit-message = "Bump version to {{version}}" push = false tag-message = "{{tag_name}}" tag-name = "{{prefix}}{{version}}" [lib] name = "followfile" path = "src/lib.rs" [[example]] name = "tail" path = "examples/tail.rs" required-features = ["tail"] [dependencies.clap] version = "4.5.4" features = ["derive"] optional = true [dependencies.tokio] version = "1.37.0" features = ["time"] optional = true [features] tail = [ "tokio/macros", "tokio/rt", "tokio/fs", "tokio/io-util", "dep:clap", ]