-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
41 lines (35 loc) · 1.03 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
38
39
40
41
[package]
name = "tarts" # shortcut from Terminal Arts
version = "0.1.9"
edition = "2021"
authors = ["oiwn <[email protected]>"]
description = "Screen savers and visual effects for terminal"
license = "MIT" # Or another valid SPDX license expression
repository = "https://github.com/oiwn/tui-screen-savers-rs"
documentation = "https://docs.rs/tarts"
homepage = "https://github.com/oiwn/tui-screen-savers-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
crossterm = "0.28"
derive_builder = "0.20"
directories = "6.0"
env_logger = "0.11"
log = "0.4"
pico-args = "0.5"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
thiserror = "2.0"
toml = "0.8"
[dev-dependencies]
criterion = "0.5"
tempfile = "3.15"
[[bench]]
name = "rain_benchmarks"
harness = false
# optimized to size
[profile.release]
panic = "abort"
strip = true # Automatically strip symbols from the binary.
opt-level = "s" # Optimize for size.
lto = true # enable link time optimization
codegen-units = 1