-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 705 Bytes
/
Cargo.toml
File metadata and controls
34 lines (29 loc) · 705 Bytes
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
[package]
name = "restack"
version = "0.8.0"
edition = "2024"
description = "Teaches git rebase --interactive about your branches."
homepage = "https://github.com/abhinav/restack"
documentation = "https://github.com/abhinav/restack/blob/main/README.md"
repository = "https://github.com/abhinav/restack"
license = "GPL-2.0"
[[bin]]
name = "restack"
path = "src/main.rs"
doctest = false
test = true
[dependencies]
anyhow = "1.0"
lexopt = "0.3.0"
tempfile = "3.5.0"
[dev-dependencies]
duct = "1.0.0"
indoc = "2.0.1"
lazy_static = "1.4.0"
pretty_assertions = "1.3.0"
restack-testtools = { path = "./tools/test" }
rstest = "0.26.0"
[profile.release]
lto = true
[workspace]
members = [".", "./tools/test"]