diff --git a/advotracker_client/Cargo.toml b/advotracker_client/Cargo.toml index 2a07516..241a553 100644 --- a/advotracker_client/Cargo.toml +++ b/advotracker_client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "advotracker_client" -version = "0.1.7" +version = "0.1.8" authors = ["Ralf Zerres "] description = "Frontend component that supports lawyers to capture relevant data encountered during an online legal advice." readme = "README.md" @@ -9,45 +9,42 @@ edition = "2018" default-run = "advotracker" build = "build.rs" -[target.x86_64-pc-windows-gnu] -linker = "lld-link" - -[target.'cfg(windows)'.dependencies] -winapi = { version = "0.3", features = [ "winuser" ] } -windres = { git = "https://github.com/FaultyRAM/windres-rs", branch = "master" } - -[dependencies] -async-stream = "~0.2" -chrono = { version = "~0.4.0", features = ["serde"] } -cfg-if = { version = "~1.0" } -clap = { version = "~2.33", features = ["suggestions", "color"] } -csv = { version = "~1.1" } -directories = { version = "~3.0" } -dotenv = { version = "~0.15.0" } -envy = { version = "~0.4" } -lettre ={ version = "0.10.0-rc.3" } -lazy_static = { version = "~1.4.0" } -log = { version = "~0.4.8" } -maud = { version = "~0.22.1" } -orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" } -#orbtk = { path = "../../../orbtk", branch="next" } -serde = { version = "~1", features = ["derive"] } -sdl2 = { version = "~0.34", features = ["bundled"] } -substring = { version = "~1" } -tracing = { version = "~0.1" } -tracing-subscriber = { version = "~0.2.0", features = ["tracing-log"] } -viperus = { git = "https://github.com/maurocordioli/viperus", features = ["cache", "fmt-clap", "fmt-env", "global", "watch"] } - [build-dependencies] -winres = { version = "0.1.11" } #twine = { version = "0.3.9", features = ["serde"] } ## twine with PR's twine = { path = "../../twine", features = ["serde"] } +winres = { version = "0.1" } +winapi = { version = "0.3", features = ["winnt", "winuser"] } + +[dependencies] +async-stream = "~0.2" +chrono = { version = "0.4.0", features = ["serde"] } +cfg-if = { version = "1.0" } +clap = { version = "2.33", features = ["suggestions", "color"] } +csv = { version = "1.1" } +directories = { version = "3.0" } +dotenv = { version = "0.15.0" } +envy = { version = "0.4" } +lettre ={ version = "0.10.0-rc.3" } +lazy_static = { version = "1.4.0" } +log = { version = "0.4.8" } +maud = { version = "0.22.1" } +orbtk = { git = "https://github.com/redox-os/orbtk.git", branch = "develop" } +#orbtk = { path = "../../../orbtk", branch="next" } +serde = { version = "1", features = ["derive"] } +sdl2 = { version = "0.34", features = ["bundled"] } +substring = { version = "1" } +tracing = { version = "0.1" } +tracing-subscriber = { version = "0.2.0", features = ["tracing-log"] } +#viperus = { git = "https://github.com/maurocordioli/viperus", features = ["cache", "fmt-clap", "fmt-env", "global", "watch"] } +viperus = { git = "https://github.com/maurocordioli/viperus", default-features = false } +winapi = { version = "0.3", features = ["winuser"] } [features] -default = [] +default = ["parse_cli"] debug = ["orbtk/debug"] light = [] +parse_cli = ["viperus/cache", "viperus/fmt-clap", "viperus/fmt-env", "viperus/global"] [package.metadata.bundle] name = "advotracker" @@ -56,8 +53,20 @@ short_description = "Online legal advice helper." description = "Supports lawyers to capture relevant data encountered during an online legal advice.\n" [package.metadata.winres] +OriginalFilename = "advotracker.exe" +FileDescription = "Windows frontend that supports lawyers to capture relevant data encountered during an online legal advice.❤" LegalCopyright = "Copyright © 2020-2021" +#[target.'cfg(target_os="windows")'.build-dependencies] +[target.'cfg(windows)'.build-dependencies] +cfg-if = { version = "1.0" } +winapi = { version = "0.3", features = ["winnt"] } +winres = { version = "0.1" } +#windres = { version = "0.2" } + +#[target.x86_64-pc-windows-gnu] +#linker = "lld-link" + [[bin]] name = "advotracker" path = "src/main.rs"