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>
This commit is contained in:
2021-03-07 18:52:14 +01:00
parent 4c88167bef
commit 5a9965751a
252 changed files with 131 additions and 2537479 deletions

View File

@@ -1,10 +1,13 @@
[package]
name = "advotrackerd"
version = "0.1.0"
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]
@@ -12,7 +15,7 @@ winapi = { version = "0.3", features = ["winuser"] }
#diesel = { version = "1.4", features = [ "msql", "postgres", "sqlite" ] }
[dependencies]
advotracker_db = { path = "../advotracker-db" }
advotrackerdb = { path = "../advotrackerdb" }
clap = { version = "~2.33", features = [ "suggestions", "color" ] }
dotenv = { version = "~0.15.0" }