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:
30
crates/advotrackerd/Cargo.toml
Normal file
30
crates/advotrackerd/Cargo.toml
Normal 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' }
|
||||
Reference in New Issue
Block a user