Files
advotracker/crates/advotrackerd/Cargo.toml
Ralf Zerres 5a9965751a advotracker: reorganize the project using a crate based structure
* advotracker: the framework project
* crate/advotrackerdb: implementation of the database backend
* crate/advotrackerd: implementation of the backend (daemon)
* crate/adovtracker: implementaton of the application (CLI and GUI)

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
2021-03-08 04:32:11 +01:00

34 lines
1.2 KiB
TOML

[package]
name = "advotrackerd"
version = "0.1.0-alpha1"
authors = ["Ralf Zerres <ralf.zerres@networkx.de>"]
description = "Supports lawyers to capture relevant data encountered during an online legal advice\n"
repository = "https://gitea.networkx.de:50443/rzerres/advotrackerdb"
homepage = "https://gitea.networkx.de:50443/rzerres/advotrackerdb"
readme = "README.md"
license = "(0BSD OR MIT)"
keywords = ["backend", "database", "db"]
edition = "2018"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }
#diesel = { version = "1.4", features = [ "msql", "postgres", "sqlite" ] }
[dependencies]
advotrackerdb = { path = "../advotrackerdb" }
clap = { version = "~2.33", features = [ "suggestions", "color" ] }
dotenv = { version = "~0.15.0" }
#env_logger = "~0.7.1"
envy = { version = "~0.4" }
locales = { version = "0.1" }
#log = { version = "~0.4.8" }
serde = { version = "~1.0", features = [ "derive" ] }
serde_json = { version = "~1.0" }
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"] }
#[replace]
#"foo:0.1.0" = { git = 'https://github.com/example/foo' }