2020-05-13 00:04:54 +02:00
|
|
|
[package]
|
|
|
|
name = "tpcpr"
|
|
|
|
version = "0.1.0"
|
2020-05-27 00:42:07 +02:00
|
|
|
authors = ["Stefan Friese <info@intheopen.org>"]
|
2020-05-13 00:04:54 +02:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2020-05-22 19:09:05 +02:00
|
|
|
#[profile.dev]
|
|
|
|
#opt-level = 3
|
|
|
|
|
2020-05-29 01:05:53 +02:00
|
|
|
#[profile.test]
|
|
|
|
#postgres = "~0.1.7"
|
|
|
|
|
2020-05-13 00:04:54 +02:00
|
|
|
[dependencies]
|
|
|
|
tokio-postgres = { version="0.5.4", features = ["runtime","with-eui48-0_4","with-serde_json-1"] }
|
|
|
|
tokio = { version = "0.2", features = ["full"] }
|
|
|
|
pcap = "~0.7.0"
|
2020-06-01 20:55:11 +02:00
|
|
|
#postgres = { version = "~0.17.2", features = ["with-eui48-0_4","with-serde_json-1"] }
|
2020-05-13 00:04:54 +02:00
|
|
|
libc = "0.2.68"
|
|
|
|
byteorder = "*"
|
|
|
|
bitfield = "*"
|
|
|
|
eui48 = "~0.4.6"
|
|
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
2020-05-19 19:34:19 +02:00
|
|
|
serde = { version = "1.0.3", features = ["derive"] }
|
2020-05-18 16:53:17 +02:00
|
|
|
rayon = "1.3"
|
2020-05-21 00:56:11 +02:00
|
|
|
regex = "1.3.7"
|