-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
79 lines (70 loc) · 2.25 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "dvc-data"
version = "0.2.0"
edition = "2021"
authors = ["Saugat Pachhai"]
description = "Pure Rust implementation of DVC"
repository = "https://github.com/skshetry/dvc-data-rs/"
[package.metadata.wix]
upgrade-guid = "8D398D47-C88D-4FFA-BE6D-00735135ADE7"
path-guid = "9EC9C041-A663-4AC3-AA6A-0FE143307511"
license = false
eula = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reflink-copy = "0.1.19"
hex = "0.4.3"
console = "0.15.8"
num_cpus = "1.16.0"
md-5 = "0.10.6"
rayon = "1.10.0"
jwalk = "0.8.1"
base16ct = { version = "0.2.0", features = ["alloc"] }
clap = { version = "4.5.15", features = ["derive"] }
indicatif = { version = "0.17.8", features = ["rayon"] }
rusqlite = { version = "0.32.1", features = ["bundled", "chrono"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.124", features = ["preserve_order"] }
serde_yaml = "0.9"
ignore = "0.4.22"
itertools = "0.13.0"
env_logger = "0.11.5"
log = "0.4.22"
config = "0.14.0"
serde_derive = "1.0.206"
directories = "5.0.1"
git2 = { version = "0.19.0", default-features = false }
whoami = "1.5.1"
serde_with = "3.9.0"
thiserror = "1.0.63"
[target.'cfg(windows)'.dependencies]
file-id = "0.2.1"
[dev-dependencies]
tempfile = "3.12.0"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
perf = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
case_sensitive_file_extension_comparisons = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
return_self_not_must_use = "allow"
# 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"
# 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-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# CI backends to support
ci = ["github"]
# Publish jobs to run in CI
pr-run-mode = "upload"