-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
86 lines (69 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
86 lines (69 loc) · 1.47 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
[package]
name = "cosmostrix"
version = "1.1.1-stable.1"
edition = "2021"
rust-version = "1.81"
authors = ["rezky_nightky"]
description = "A cosmic take on the classic Matrix rain for the terminal"
license = "MIT"
repository = "https://github.com/oxyzenq/cosmostrix"
build = "build.rs"
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
crossterm = "0.29.0"
rand = "0.9.3"
bitvec = "1"
smallvec = "1"
[target.'cfg(unix)'.dependencies]
signal-hook = "0.3.17"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.160"
[target.'cfg(windows)'.dependencies]
ctrlc = "3.4.5"
[profile.dev]
opt-level = 0
debug = true
split-debuginfo = "unpacked"
incremental = true
codegen-units = 256
[profile.release]
opt-level = 3
debug = false
strip = true
lto = "fat"
codegen-units = 1
panic = "unwind"
overflow-checks = false
[profile.pro]
inherits = "release"
opt-level = 3
debug = false
strip = true
lto = "fat"
codegen-units = 1
panic = "unwind"
overflow-checks = false
[profile.pro-linux-v1]
inherits = "pro"
[profile.pro-linux-v2]
inherits = "pro"
[profile.pro-linux-v3]
inherits = "pro"
[profile.pro-linux-v4]
inherits = "pro"
[profile.pro-macos-aarch64-native]
inherits = "pro"
[profile.pro-win-x86_64]
inherits = "pro"
[profile.pro-android-aarch64]
inherits = "pro"
[profile.release-with-debug]
inherits = "release"
debug = true
strip = false
[profile.bench]
inherits = "release"
debug = true
overflow-checks = false
# Platform-specific optimizations
# At ./cargo/config.toml