[package] name = "tokio-nflog" version = "0.1.0" authors = ["Evgeny Nosov "] edition = "2018" license = "MIT/Apache-2.0" keywords = ["netfilter", "nflog", "tokio", "async"] repository = "https://github.com/zshell31/tokio-nflog" homepage = "https://github.com/zshell31/tokio-nflog" description = "Bindings to the libnetfilter_log library to receive netfilter logs in tokio-based applications." readme = "README.md" [workspace] members = [ ".", "nflog-sys", "nfnetlink-sys" ] [features] serde = ["pnet_base/serde"] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] bitflags = "1.2" bytes = "1.1.0" futures = { version = "0.3", default-features = false } libc = "0.2.99" nflog-sys = { version = "0.1.0", path = "nflog-sys" } nix = "0.22.1" pnet_base = "0.28.0" tokio = { version = "1", features = ["net"] } [dev-dependencies] tokio = { version = "1", features = ["rt-multi-thread", "macros"] } [[example]] name = "queue"