rucksack/Cargo.toml

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

60 lines
1.7 KiB
TOML
Raw Permalink Normal View History

2022-07-10 17:56:41 +05:30
[package]
2023-08-20 20:18:57 +05:30
name = "rucksack"
version = "1.1.1"
2022-07-10 17:56:41 +05:30
authors = ["Harsh Shandilya <me@msfjarvis.dev>"]
edition = "2021"
description = "CLI tool to collect files from multiple directories into a single target"
2023-08-20 20:18:57 +05:30
repository = "https://github.com/msfjarvis/rucksack"
homepage = "https://github.com/msfjarvis/rucksack"
2022-07-10 17:56:41 +05:30
license = "MIT/Apache-2.0"
keywords = []
readme = "README.md"
include = ["src/**/*", "LICENSE-*", "README.md"]
2023-06-25 22:25:59 +05:30
publish = false
2022-07-10 17:56:41 +05:30
[dependencies]
anyhow = "1.0.82"
basic-toml = "0.1.9"
dirs = "5.0.1"
futures = "0.3.30"
globset = "0.4.14"
serde = "1.0.200"
serde_derive = "1.0.200"
tokio = { version = "1.37.0", features = ["tokio-macros"] }
tracing = "0.1.40"
2022-08-15 01:20:45 +05:30
tracing-journald = { version = "0.3.0", optional = true }
tracing-subscriber = "0.3.18"
2022-07-10 17:56:41 +05:30
watchman_client = "0.8.0"
2022-07-10 17:56:46 +05:30
[dev-dependencies]
assay = "0.1.1"
2022-08-15 01:25:12 +05:30
[features]
journald = ["tracing-journald"]
2023-04-11 00:18:15 +05:30
# The profile that 'cargo dist' will build with
2023-04-11 00:18:15 +05:30
[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.13.1"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "msfjarvis/homebrew-tap"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Whether to consider the binaries in a package for distribution (defaults true)
dist = true
# Publish jobs to run in CI
pr-run-mode = "upload"
# Whether to install an updater program
install-updater = true