-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
71 lines (64 loc) · 1.74 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
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
[package]
name = "theattyr"
version = "0.1.10"
description = "A terminal theater for playing VT100 art and animations"
authors = ["Orhun Parmaksız <[email protected]>"]
license = "MIT OR Apache-2.0"
readme = "README.md"
homepage = "https://github.com/orhun/theattyr"
repository = "https://github.com/orhun/theattyr"
keywords = ["terminal", "vt100", "animation", "rendering"]
categories = ["command-line-utilities"]
edition = "2021"
include = [
"src/**/*",
"vt100",
"Cargo.*",
"LICENSE*",
"README.md",
"CHANGELOG.md",
]
[dependencies]
ratatui = "0.28.1"
tui-term = "0.1.13"
vt100 = "0.15.2"
rust-embed = { version = "8.5.0", features = ["compression", "debug-embed"] }
color-eyre = "0.6.3"
clap = { version = "4.5.17", features = ["derive", "env", "wrap_help", "cargo"] }
tachyonfx = "0.7.0"
[profile.dev]
opt-level = 0
debug = true
panic = "abort"
[profile.test]
opt-level = 0
debug = true
[profile.release]
opt-level = 3
debug = false
panic = "unwind"
lto = true
codegen-units = 1
strip = true
[profile.bench]
opt-level = 3
debug = false
[profile.dist]
inherits = "release"
lto = "thin"
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.22.0"
# CI backends to support
ci = "github"
# The installers to generate for each app
installers = ["shell", "powershell"]
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["aarch64-apple-darwin", "x86_64-apple-darwin", "x86_64-unknown-linux-gnu", "x86_64-unknown-linux-musl", "x86_64-pc-windows-msvc"]
# Path that installers should place binaries in
install-path = "CARGO_HOME"
# Whether to install an updater program
install-updater = false
# Allow dirty CI builds
allow-dirty = ["ci"]