-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
32 lines (28 loc) · 946 Bytes
/
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 = "audit"
version = "0.7.3"
authors = ["Corentin Henry <[email protected]>"]
edition = "2018"
homepage = "https://github.com/rust-netlink/audit"
keywords = ["netlink", "ip", "linux", "audit"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/rust-netlink/audit"
description = "linux audit via netlink"
[dependencies]
futures = "0.3.11"
thiserror = "1"
netlink-packet-audit = { version = "0.5.1" }
netlink-packet-core = { version = "0.7" }
netlink-proto = { default-features = false, version = "0.11.2" }
[features]
default = ["tokio_socket"]
tokio_socket = ["netlink-proto/tokio_socket"]
smol_socket = ["netlink-proto/smol_socket"]
[dev-dependencies]
tokio = { version = "1.0.1", default-features = false, features = ["macros", "rt-multi-thread"] }
async-std = { version = "1.9.0", features = ["attributes"] }
env_logger = "0.8.2"
[[example]]
name = "events_async"
required-features = ["smol_socket"]