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 = "*"
|
2022-10-26 21:51:54 +02:00
|
|
|
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 = "*"
|
2022-10-26 21:51:54 +02:00
|
|
|
futures-util = "*"
|
2019-10-10 14:39:54 +02:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|