57 lines
1.1 KiB
TOML
57 lines
1.1 KiB
TOML
[package]
|
|
name = "advotracker"
|
|
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 = "MIT"
|
|
edition = "2018"
|
|
|
|
[profile.release]
|
|
# optimize to max speed
|
|
#opt-level = "3"
|
|
# optimize to smallest size
|
|
opt-level = "z"
|
|
|
|
[dependencies.clap]
|
|
version = "2.33"
|
|
default-features = false
|
|
features = [ "suggestions", "color", "yaml" ]
|
|
|
|
[dependencies.envy]
|
|
version = "0.4"
|
|
|
|
[dependencies.diesel]
|
|
version = "1.4.0"
|
|
features = [ "postgres", "sqlite" ]
|
|
|
|
[dependencies.dotenv]
|
|
version = "0.15.0"
|
|
|
|
[dependencies.locales]
|
|
version = "0.1.0"
|
|
|
|
[dependencies.serde]
|
|
version = "1.0.102"
|
|
features = [ "derive" ]
|
|
|
|
[dependencies.slog]
|
|
version = "2.5.2"
|
|
|
|
[dependencies.slog-async]
|
|
version = "2.3.0"
|
|
|
|
[dependencies.slog-term]
|
|
version = "2.4.2"
|
|
|
|
# this is the successor of slog/log
|
|
[dependencies.tracing]
|
|
version = "0.1"
|
|
|
|
[dependencies.tracing-subscriber]
|
|
version = "0.1"
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["winuser"] }
|
|
#diesel = { version = "1.4.0", features = [ "msql", "postgres", "sqlite" ] }
|