bartib/Cargo.toml

47 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2021-02-04 20:59:41 +00:00
[package]
name = "bartib"
2024-02-29 09:54:24 +00:00
version = "1.1.0"
2021-02-04 20:59:41 +00:00
authors = ["Nikolas Schmidt-Voigt <nikolas.schmidt-voigt@posteo.de>"]
2021-02-04 21:18:22 +00:00
description = "A simple timetracker for the command line"
2021-11-16 20:51:59 +00:00
homepage = "https://github.com/nikolassv/bartib"
repository = "https://github.com/nikolassv/bartib"
2021-02-04 20:59:41 +00:00
edition = "2018"
2021-02-04 21:18:22 +00:00
license = "GPL-3.0-or-later"
2021-11-16 20:51:59 +00:00
readme = "README.md"
keywords = ["cli"]
categories = ["command-line-utilities"]
2021-02-04 20:59:41 +00:00
2024-02-13 21:29:58 +00:00
[package.metadata.wix]
upgrade-guid = "1D8348BE-1D47-4755-8D09-624AF8B092C3"
path-guid = "BE8CBFAC-1DE6-4B0D-BB4B-C31A85A34AC5"
license = false
eula = false
2021-02-04 20:59:41 +00:00
[dependencies]
2023-01-03 08:23:47 +00:00
chrono = "0.4.0"
clap = "2.0.0"
thiserror = "1.0.0"
anyhow = "1.0.0"
nu-ansi-term = "0.46.0"
term_size = "0.3.0"
textwrap = "0.16.0"
wildmatch = "2.3.0"
2024-02-13 21:29:58 +00:00
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.10.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell", "msi"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-pc-windows-msvc"]
# Publish jobs to run in CI
pr-run-mode = "upload"