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-06-29 02:08:26 +02:00
|
|
|
[profile.release]
|
2020-06-29 23:54:42 +02:00
|
|
|
#debug = true
|
2020-06-29 02:08:26 +02:00
|
|
|
#lto = "fat"
|
|
|
|
#codegen-units = 1
|
|
|
|
#panic = "abort"
|
|
|
|
|
|
|
|
|
2020-05-13 00:04:54 +02:00
|
|
|
[dependencies]
|
2023-07-24 22:57:31 +02:00
|
|
|
# tokio-postgres = { version="0.5.4", features = ["runtime","with-eui48-0_4","with-serde_json-1"] }
|
|
|
|
tokio-postgres = { version="0.7", features = ["runtime","with-eui48-0_4","with-serde_json-1"] }
|
|
|
|
#tokio = { version = "0.2", features = ["full"] }
|
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
2020-05-13 00:04:54 +02:00
|
|
|
pcap = "~0.7.0"
|
|
|
|
byteorder = "*"
|
|
|
|
bitfield = "*"
|
2020-06-22 12:11:51 +02:00
|
|
|
eui48 = { version = "~0.4.6", features = ["serde"] }
|
2020-05-13 00:04:54 +02:00
|
|
|
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"
|
2023-07-24 22:57:31 +02:00
|
|
|
futures = "~0.3.28"
|
2020-06-29 02:08:26 +02:00
|
|
|
jemallocator = "~0.3.2"
|