-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathCargo.toml
29 lines (25 loc) · 867 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
[package]
name = "rtshark"
version = "3.1.0"
edition = "2021"
authors = ["CrabeDeFrance"]
license = "MIT OR Apache-2.0"
description = "A Rust interface for TShark"
repository = "https://github.com/CrabeDeFrance/rtshark"
homepage = "https://github.com/CrabeDeFrance/rtshark"
documentation = "https://docs.rs/rtshark"
readme = "README.md"
categories = ["network-programming", "api-bindings", "parser-implementations"]
keywords = ["wireshark", "tshark", "pcap", "network", "dissector"]
exclude = ["/.github"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = { version = "0.4", default-features = false }
quick-xml = "0.37"
semver = "1"
[dev-dependencies]
tempdir = "0.3"
libc = "0.2"
serial_test="3"
[target.'cfg(unix)'.dev-dependencies]
nix = { version = "0.29", features = ["fs", "signal"] }