31 lines
889 B
TOML
31 lines
889 B
TOML
[package]
|
|
name = "tpcpr"
|
|
version = "0.1.0"
|
|
authors = ["Stefan Friese <info@intheopen.org>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[profile.release]
|
|
#debug = true
|
|
#lto = "fat"
|
|
#codegen-units = 1
|
|
#panic = "abort"
|
|
|
|
|
|
[dependencies]
|
|
# 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"] }
|
|
pcap = "~0.7.0"
|
|
byteorder = "*"
|
|
bitfield = "*"
|
|
eui48 = { version = "~0.4.6", features = ["serde"] }
|
|
serde_json = { version = "1.0", features = ["raw_value"] }
|
|
serde = { version = "1.0.3", features = ["derive"] }
|
|
rayon = "1.3"
|
|
regex = "1.3.7"
|
|
futures = "~0.3.28"
|
|
jemallocator = "~0.3.2"
|