-
Notifications
You must be signed in to change notification settings - Fork 10
/
Cargo.toml
37 lines (32 loc) · 1.08 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
[package]
name = "gimoji"
description = "Easily add emojis to your git commit messages 🎉"
version = "1.1.1"
edition = "2021"
license = "MIT"
authors = ["Zeeshan Ali Khan <[email protected]>"]
repository = "https://github.com/zeenix/gimoji"
keywords = ["CLI", "git", "emoji"]
categories = ["development-tools"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5.4", features = ["derive"] }
crossterm = { version = "0.28.0", features = ["use-dev-tty"] }
ratatui = "0.28.0"
regex = { version = "1.10.4", default-features = false, features = [
"std",
"perf",
"unicode-case",
] }
arboard = { version = "3.4.0", default-features = false, features = [
"wayland-data-control",
] }
terminal-light = "1.4.0"
[target.'cfg(unix)'.dependencies]
nix = { version = "0.29", default-features = false, features = ["process"] }
[build-dependencies]
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
databake = { version = "0.1.7", features = ["derive"] }
[profile.release]
lto = "fat"