gitice/Cargo.toml

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

52 lines
1.6 KiB
TOML
Raw Normal View History

[package]
name = "gitice"
version = "2.0.3"
2023-06-26 00:47:57 +05:30
authors = [
"Harsh Shandilya <me@msfjarvis.dev>",
"Amogh Lele <amolele@gmail.com>",
]
2023-05-11 13:37:23 +05:30
edition = "2021"
description = "Freeze your local git repositories for easy restoration"
repository = "https://github.com/msfjarvis/gitice"
homepage = "https://github.com/msfjarvis/gitice"
license = "MIT/Apache-2.0"
keywords = ["git", "snapshot", "backup", "restore"]
readme = "README.md"
2022-01-21 00:56:53 +05:30
include = ["src/**/*", "LICENSE-*", "README.md"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.7", features = ["color", "deprecated", "derive"] }
gix = "0.55.2"
serde = { version = "1.0.190", default-features = false }
serde_derive = "1.0.190"
toml = "0.8.6"
tracing = "0.1.40"
2023-05-11 13:26:51 +05:30
tracing-subscriber = "0.3.17"
walkdir = "2.4.0"
[badges]
maintenance = { status = "actively-developed" }
2023-05-11 13:37:23 +05:30
# 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.2.0-prerelease.5"
2023-05-11 13:37:23 +05:30
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "powershell", "homebrew"]
2023-05-11 13:37:23 +05:30
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "x86_64-pc-windows-msvc", "aarch64-apple-darwin"]
# A GitHub repo to push Homebrew formulas to
tap = "msfjarvis/homebrew-tap"
# Publish jobs to run in CI
publish-jobs = ["homebrew"]