-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (39 loc) · 1.26 KB
/
Copy pathCargo.toml
File metadata and controls
44 lines (39 loc) · 1.26 KB
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
[package]
name = "git-chkpt"
version = "0.1.1"
edition = "2024"
authors = ["iroha3"]
license = "MIT OR Apache-2.0"
description = "Lightweight, local checkpoint tool for Git worktrees, powered by Fossil"
repository = "https://github.com/git-odd/git-chkpt"
homepage = "https://github.com/git-odd/git-chkpt"
readme = "README.md"
keywords = ["git", "checkpoint", "backup", "vcs", "productivity"]
categories = ["command-line-utilities", "development-tools"]
[lib]
name = "git_chkpt"
path = "src/lib.rs"
[[bin]]
name = "git-chkpt"
path = "src/main.rs"
[[bin]]
name = "git-checkpoint"
path = "src/bin/git_checkpoint.rs"
[features]
default = ["auto-fossil"]
auto-fossil = ["dep:flate2", "dep:sha3", "dep:tar", "dep:ureq", "dep:zip"]
[dependencies]
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4.5", features = ["derive"] }
fs2 = "0.4"
flate2 = { version = "1.0", optional = true }
hex = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.10"
sha3 = { version = "0.10", optional = true }
tar = { version = "0.4", optional = true }
tempfile = "3.10"
ureq = { version = "2.12", optional = true, features = ["proxy-from-env"] }
zip = { version = "2.2", default-features = false, features = ["deflate"], optional = true }