frontend: Cargo.toml: new dependencies
* commandline parsing: clap, viperus * csv file handling * envirenment variable: dotenv, envy * i18n: locales * serde json support * tracing: tracing, tracing-subscriber Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
@@ -12,11 +12,24 @@ winapi = { version = "0.3", features = ["winuser"] }
|
|||||||
#diesel = { version = "1.4", features = [ "postgres", "sqlite" ] }
|
#diesel = { version = "1.4", features = [ "postgres", "sqlite" ] }
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
async-stream = "~0.2"
|
||||||
|
csv = { version = "~1.1" }
|
||||||
|
clap = { version = "~2.33", features = ["suggestions", "color"] }
|
||||||
|
dotenv = "~0.15.0"
|
||||||
|
#env_logger = "~0.7.1"
|
||||||
|
envy = { version = "~0.4" }
|
||||||
|
log = "~0.4.8"
|
||||||
|
locales = { version = "0.1" }
|
||||||
#orbtk = "~0.3.1-alpha3"
|
#orbtk = "~0.3.1-alpha3"
|
||||||
#orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" }
|
#orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" }
|
||||||
orbtk = { path = "../../redox-os/orbtk" }
|
orbtk = { path = "../../redox-os/orbtk" }
|
||||||
serde = { version = "~1.0", features = ["derive"] }
|
serde = { version = "~1.0", features = ["derive"] }
|
||||||
|
#serde_json = "~1.0"
|
||||||
chrono = { version = "~0.4.0", features = ["serde"] }
|
chrono = { version = "~0.4.0", features = ["serde"] }
|
||||||
|
#tokio = { version = "~0.2", features = ["macros", "rt-threaded", "stream", "time"] }
|
||||||
|
tracing = { version = "~0.1" }
|
||||||
|
tracing-subscriber = { version = "0.2.0-alpha", features = ["tracing-log"] }
|
||||||
|
viperus = { git = "https://github.com/maurocordioli/viperus", features = ["cache", "watch", "fmt-clap", "fmt-env"] }
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
# no features by default
|
# no features by default
|
||||||
|
|||||||
Reference in New Issue
Block a user