44 lines
1.6 KiB
TOML
44 lines
1.6 KiB
TOML
[package]
|
|
name = "advotracker"
|
|
version = "0.1.0"
|
|
authors = ["Ralf Zerres <ralf.zerres@networkx.de>"]
|
|
description = "Frontend component that supports lawyers to capture relevant data encountered during an online legal advice."
|
|
readme = "README.md"
|
|
license = "(0BSD OR MIT)"
|
|
edition = "2018"
|
|
default-run = "advotracker"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["winuser"] }
|
|
#diesel = { version = "1.4", features = [ "postgres", "sqlite" ] }
|
|
|
|
[dependencies]
|
|
async-stream = "~0.2"
|
|
chrono = { version = "~0.4.0", features = ["serde"] }
|
|
clap = { version = "~2.33", features = ["suggestions", "color"] }
|
|
csv = { version = "~1.1" }
|
|
dotenv = { version = "~0.15.0" }
|
|
envy = { version = "~0.4" }
|
|
lazy_static = { version = "~1.4.0" }
|
|
log = { version = "~0.4.8" }
|
|
locales = { version = "~0.1" }
|
|
#orbtk = { version = "~0.3.1-alpha3" }
|
|
#orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" }
|
|
orbtk = { path = "../../orbtk" }
|
|
serde = { version = "~1.0", features = ["derive"] }
|
|
#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", "fmt-clap", "fmt-env", "global", "watch"] }
|
|
|
|
[features]
|
|
# no features by default
|
|
default = []
|
|
testing = ["orbtk/debug"]
|
|
|
|
[package.metadata.bundle]
|
|
name = "advotracker"
|
|
identifier = "nwx.advotracker"
|
|
short_description = "Online legal advice helper."
|
|
description = "Supports lawyers to capture relevant data encountered during an online legal advice.\n"
|