advotracker: restructure project using crate tree

* advotracker: the framework crate
* crate/advotrackerdb: crate implementing the database backend
* crate/advotrackerd: the backend daemon
* crate/adovtracker: the application (CLI and GUI)

Signed-off-by: Ralf Zerres <ralf.zerres@networkx.de>
This commit is contained in:
2021-03-07 18:38:50 +01:00
parent 1ce1d029e5
commit 4c88167bef
185 changed files with 2542983 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
[package]
name = "advotrackerd"
version = "0.1.0"
authors = ["Ralf Zerres <ralf.zerres@networkx.de>"]
description = "Supports lawyers to capture relevant data encountered during an online legal advice\n"
readme = "README.md"
license = "(0BSD OR MIT)"
edition = "2018"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3", features = ["winuser"] }
#diesel = { version = "1.4", features = [ "msql", "postgres", "sqlite" ] }
[dependencies]
advotracker_db = { path = "../advotracker-db" }
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' }