-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 798 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 798 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
[package]
name = "zing-art"
version = "1.1.0"
repository = "https://github.com/000volk000/zing"
homepage = "https://github.com/000volk000/zing"
description = " A TUI for physical string art placement. It takes a sequence, you pull the thread. ZING: Zing Is Not Generating."
authors = ["Darío Martínez Kostyuk <dariomartk@gmail.com>"]
license = "MIT"
edition = "2024"
[[bin]]
name = "zing"
path = "src/main.rs"
[dependencies]
color-eyre = "0.6.3"
crossterm = "0.29.0"
ratatui = "0.30.0"
tui-big-text = "0.8.2"
# Read the optimization guideline for more details: https://ratatui.rs/recipes/apps/release-your-app/#optimizations
[profile.release]
codegen-units = 1
lto = true
opt-level = "s"
strip = true
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"