log2db/Cargo.toml

18 lines
355 B
TOML
Raw Normal View History

2019-10-10 00:47:07 +02:00
[package]
name = "log2db"
version = "0.1.0"
authors = ["Yannik"]
2022-10-26 21:54:33 +02:00
edition = "2021"
2019-10-10 00:47:07 +02:00
[dependencies]
structopt = "*"
tokio = {version="*", features=["rt", "macros"]}
tokio-util = {version="*", features=["codec"]}
tokio-postgres = {version = "*", features =["with-chrono-0_4"]}
2019-10-10 00:47:07 +02:00
chrono = "*"
futures-util = "*"
2019-10-10 14:39:54 +02:00
[profile.release]
lto = "fat"
codegen-units = 1