-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 691 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 691 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
[package]
name = "thwack"
description = "Command line version of Go To File utility, similar to the one on GitHub"
authors = ["Yutaka Kamei <kamei@yykamei.me>"]
homepage = "https://github.com/yykamei/thwack"
repository = "https://github.com/yykamei/thwack"
license = "MIT OR Apache-2.0"
categories = ["command-line-utilities"]
edition = "2024"
rust-version = "1.91.1"
version = "0.10.7"
[dependencies]
copypasta = "0.10.2"
crossterm = "0.29.0"
git2 = { version = "0.21.0", default-features = false }
libc = "0.2.186"
log = { version = "0.4.31", features = ["std"] }
unicode-segmentation = "1.13.3"
unicode-width = "0.2.2"
[dev-dependencies]
pretty_assertions = "1.4.1"
tempfile = "3.27.0"