19 lines
356 B
TOML
19 lines
356 B
TOML
|
[package]
|
||
|
name = "log2db"
|
||
|
version = "0.1.0"
|
||
|
authors = ["Yannik"]
|
||
|
edition = "2018"
|
||
|
|
||
|
[dependencies]
|
||
|
structopt = "*"
|
||
|
tokio = "0.2.0-alpha.6"
|
||
|
chrono = "*"
|
||
|
|
||
|
[dependencies.tokio-postgres]
|
||
|
git = "https://github.com/sfackler/rust-postgres.git"
|
||
|
features = ["with-chrono-0_4"]
|
||
|
|
||
|
[dependencies.futures-preview]
|
||
|
version = "=0.3.0-alpha.19"
|
||
|
features = [ "async-await" ]
|