bartib/Cargo.toml
Nikolas Schmidt-Voigt 5be3c6e6e7 initialized cargo dist
2024-02-13 22:29:58 +01:00

46 lines
1.3 KiB
TOML

[package]
name = "bartib"
version = "1.0.1"
authors = ["Nikolas Schmidt-Voigt <nikolas.schmidt-voigt@posteo.de>"]
description = "A simple timetracker for the command line"
homepage = "https://github.com/nikolassv/bartib"
repository = "https://github.com/nikolassv/bartib"
edition = "2018"
license = "GPL-3.0-or-later"
readme = "README.md"
keywords = ["cli"]
categories = ["command-line-utilities"]
[package.metadata.wix]
upgrade-guid = "1D8348BE-1D47-4755-8D09-624AF8B092C3"
path-guid = "BE8CBFAC-1DE6-4B0D-BB4B-C31A85A34AC5"
license = false
eula = false
[dependencies]
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"
# 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"