# 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 = "async-log-watch" version = "0.2.0" authors = ["Jaemin Kim "] description = "A simple Rust library to monitor log files and trigger an async callback when a new line is added." documentation = "https://docs.rs/async-log-watch" readme = "README.md" license = "MIT" repository = "https://github.com/geminik23/async-log-watch" [package.metadata.features] mutually_exclusive = [ "default", "tokio1", "tokio01", "tokio03", ] [lib] name = "async_log_watch" path = "src/lib.rs" [dependencies.async-std] version = "1.12" optional = true [dependencies.notify] version = "5.1" [dependencies.regex] version = "1.8" [dependencies.shellexpand] version = "3.1" [dependencies.thiserror] version = "1.0" [features] async_std_default = ["async-std/attributes"] async_std_tokio1 = [ "async-std/attributes", "async-std/tokio1", ] async_std_tokio2 = [ "async-std/attributes", "async-std/tokio02", ] async_std_tokio3 = [ "async-std/attributes", "async-std/tokio03", ] default = ["async_std_default"] tokio02 = ["async_std_tokio2"] tokio03 = ["async_std_tokio3"] tokio1 = ["async_std_tokio1"]