-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
executable file
·36 lines (33 loc) · 1.18 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
[package]
name = "fix-name-case"
version = "1.3.0"
authors = ["Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"]
license = "GPL-3.0-or-later"
edition = "2021"
description = "CLI tool to convert variable and function names to snake_case"
readme = "README.md"
homepage = "https://github.com/AgriConnect/FixNameCase"
repository = "https://github.com/AgriConnect/FixNameCase"
exclude = [".github", "debian"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
byte-slice-cast = "1.2.2"
clap = { version = "4.5.18", features = ["derive"] }
color-eyre = "0.6.3"
console = "0.15.8"
convert_case = "0.6.0"
eyre = "0.6.12"
glob-match = "0.2.1"
ignore = "0.4.23"
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
unicode-intervals = "0.2.0"
which = "6.0.3"
[package.metadata.deb]
copyright = "2024, Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"
maintainer = "Nguyễn Hồng Quân <ng.hong.quan@gmail.com>"
section = "rust"
license-file = ["debian/license", "3"]
changelog = "debian/changelog"
extended-description = """Hidden files and files listed in .gitignore are untouched.
For now, only C/C++ files are supported."""