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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
|
# 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 = "kqueue"
version = "1.1.1"
authors = ["William Orr <will@worrbase.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "kqueue interface for BSDs"
documentation = "https://docs.worrbase.com/rust/kqueue/"
readme = "README.md"
keywords = [
"kqueue",
"kevent",
"bsd",
]
categories = [
"os::unix-apis",
"filesystem",
]
license = "MIT"
repository = "https://gitlab.com/rust-kqueue/rust-kqueue"
[package.metadata.docs.rs]
targets = [
"x86_64-unknown-netbsd",
"x86_64-unknown-freebsd",
"i686-unknown-freebsd",
"x86_64-unknown-dragonfly",
"x86_64-unknown-openbsd",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
"aarch64-apple-ios",
"x86_64-apple-ios",
]
[lib]
name = "kqueue"
path = "src/lib.rs"
[[example]]
name = "file"
path = "examples/file.rs"
[[example]]
name = "pid"
path = "examples/pid.rs"
[[test]]
name = "dhat_add_hundred"
path = "tests/dhat_add_hundred.rs"
[[test]]
name = "dhat_add_single"
path = "tests/dhat_add_single.rs"
[[test]]
name = "dhat_add_ten"
path = "tests/dhat_add_ten.rs"
[[test]]
name = "dhat_rm_hundred"
path = "tests/dhat_rm_hundred.rs"
[[test]]
name = "dhat_rm_single"
path = "tests/dhat_rm_single.rs"
[[test]]
name = "dhat_rm_ten"
path = "tests/dhat_rm_ten.rs"
[[bench]]
name = "criterion_scaling"
path = "benches/criterion_scaling.rs"
harness = false
[dependencies.kqueue-sys]
version = "^1.0.4"
[dependencies.libc]
version = "^0.2.17"
[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]
[dev-dependencies.dhat]
version = "0.3.2"
[dev-dependencies.tempfile]
version = "3.1.0"
[lints.clippy]
print_stderr = "deny"
print_stdout = "deny"
|