-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (34 loc) · 931 Bytes
/
Copy pathCargo.toml
File metadata and controls
39 lines (34 loc) · 931 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
35
36
37
38
39
[package]
name = "mew-cli"
version = "0.1.2"
edition = "2024"
description = "fast, zero-daemon terminal companion and git workspace dashboard with reactive ascii mascot"
license = "MIT"
repository = "https://github.com/programmersd21/mew"
keywords = ["cli", "git", "dashboard", "terminal", "fetch"]
categories = ["command-line-utilities"]
rust-version = "1.95"
# binary keeps the short `mew` name; the library keeps its `mew` target
# name so internal `mew::` imports and integration tests are untouched.
[[bin]]
name = "mew"
path = "src/main.rs"
[lib]
name = "mew"
path = "src/lib.rs"
[dependencies]
git2 = "0.21"
serde = { version = "1.0", features = ["derive"] }
toml = "1.0"
dirs = "6.0"
chrono = "0.4"
ignore = "0.4"
clap = { version = "4.6", features = ["derive"] }
anyhow = "1.0"
sysinfo = "0.39"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
[profile.release]
lto = true
codegen-units = 1
strip = true