updated Cargo.toml

This commit is contained in:
gurkenhabicht 2020-06-22 12:11:51 +02:00
parent 23d821234a
commit 381cecd710
1 changed files with 3 additions and 8 deletions

View File

@ -6,22 +6,17 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
#[profile.dev]
#opt-level = 3
#[profile.test]
#postgres = "~0.1.7"
[dependencies] [dependencies]
tokio-postgres = { version="0.5.4", features = ["runtime","with-eui48-0_4","with-serde_json-1"] } tokio-postgres = { version="0.5.4", features = ["runtime","with-eui48-0_4","with-serde_json-1"] }
tokio = { version = "0.2", features = ["full"] } tokio = { version = "0.2", features = ["full"] }
pcap = "~0.7.0" pcap = "~0.7.0"
#postgres = { version = "~0.17.2", features = ["with-eui48-0_4","with-serde_json-1"] } #postgres = { version = "~0.17.2", features = ["with-eui48-0_4","with-serde_json-1"] }
libc = "0.2.68" #libc = "0.2.68"
byteorder = "*" byteorder = "*"
bitfield = "*" bitfield = "*"
eui48 = "~0.4.6" eui48 = { version = "~0.4.6", features = ["serde"] }
serde_json = { version = "1.0", features = ["raw_value"] } serde_json = { version = "1.0", features = ["raw_value"] }
serde = { version = "1.0.3", features = ["derive"] } serde = { version = "1.0.3", features = ["derive"] }
rayon = "1.3" rayon = "1.3"
regex = "1.3.7" regex = "1.3.7"
futures = "~0.3.5"