17 lines
355 B
TOML
17 lines
355 B
TOML
[package]
|
|
name = "log2db"
|
|
version = "0.1.0"
|
|
authors = ["Yannik"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
structopt = "*"
|
|
tokio = {version="*", features=["rt", "macros"]}
|
|
tokio-util = {version="*", features=["codec"]}
|
|
tokio-postgres = {version = "*", features =["with-chrono-0_4"]}
|
|
chrono = "*"
|
|
futures-util = "*"
|
|
|
|
[profile.release]
|
|
lto = "fat"
|
|
codegen-units = 1
|