-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
32 lines (28 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "linemux"
version = "0.3.0"
authors = ["Jon Magnuson <[email protected]>"]
edition = "2021"
description = "A library providing asynchronous, multiplexed tailing for (namely log) files."
documentation = "https://docs.rs/linemux"
repository = "https://github.com/jmagnuson/linemux"
readme = "README.md"
keywords = ["tail", "log", "watch", "fs", "events"]
license = "MIT OR Apache-2.0"
categories = ["asynchronous", "filesystem"]
rust-version = "1.60"
[badges]
travis-ci = { repository = "jmagnuson/linemux", branch = "master" }
codecov = { repository = "jmagnuson/linemux", branch = "master", service = "github" }
[features]
default = ["tokio"]
tokio = ["dep:tokio"]
[dependencies]
futures-util = { version = "0.3", default-features = false, features = ["std"] }
notify = { version = "6", default-features = false, features = ["macos_kqueue", "crossbeam-channel"] }
pin-project-lite = "0.2"
tokio = { version = "1", features = ["fs", "io-util", "sync", "time"], optional = true }
[dev-dependencies]
doc-comment = "0.3"
tempfile = "3.1"
tokio = { version = "1", features = ["macros", "process", "rt-multi-thread"] }