-
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (38 loc) · 1.15 KB
/
Copy pathCargo.toml
File metadata and controls
43 lines (38 loc) · 1.15 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
[package]
name = "rusty-rain"
version = "0.4.0"
authors = ["cowboy8625 <https://github.com/cowboy8625>"]
edition = "2024"
description = "Cross platform CMatrix like program."
readme = "README.md"
repository = "https://github.com/cowboy8625/rusty-rain"
# homepage = "https://rusty-rain.xyz"
license-file = "LICENSE"
keywords = ["matrix", "matrix-rain", "emoji", "cmatrix", "rain"]
categories = ["command-line-utilities"]
[dependencies]
clap = { version = "4.5.43", features = ["cargo", "derive"] }
crossterm = "0.29.0"
rand = "0.9.2"
ezemoji = "2.0.0"
toml = "0.9.5"
serde = { version = "1.0.219", features = ["derive"] }
[dev-dependencies]
pretty_assertions = "1.4.1"
insta = { version = "1.43.1", features = ["yaml"] }
[profile.dev.package.insta]
opt-level = 3
[profile.dev.package.similar]
opt-level = 3
[package.metadata.deb]
maintainer = "cowboy8625 <cowboy8625@protonmail.com>"
extended-description-file = "debian/description"
priority = "optional"
section = "utils"
depends = []
license-file = ["debian/copyright"]
changelog = "debian/changelog"
assets = [
["target/release/rusty-rain", "usr/bin/", "755"],
["debian/rusty-rain.1", "usr/share/man/man1/", "644"]
]