-
-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathCargo.toml
More file actions
75 lines (69 loc) · 1.7 KB
/
Copy pathCargo.toml
File metadata and controls
75 lines (69 loc) · 1.7 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
[package]
name = "ratty"
version = "0.5.0"
description = "A GPU-rendered terminal emulator that supports inline 3D graphics"
authors = ["Orhun Parmaksız <orhunparmaksiz@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/orhun/ratty"
repository = "https://github.com/orhun/ratty"
keywords = ["terminal", "emulator", "3d", "graphics"]
categories = ["command-line-utilities", "graphics"]
edition = "2024"
exclude = ["website/**", ".github/**", "widget/**"]
[dependencies]
anyhow = "1.0"
arboard = { version = "3.6", features = ["wayland-data-control"] }
base64 = "0.22"
bevy = { version = "0.19.0", default-features = false, features = [
"std",
"async_executor",
"bevy_asset",
"bevy_core_pipeline",
"bevy_gltf",
"bevy_log",
"bevy_pbr",
"bevy_scene",
"bevy_sprite",
"bevy_sprite_render",
"bevy_winit",
"gltf_animation",
"keyboard",
"mouse",
"multi_threaded",
"png",
"reflect_auto_register",
"tonemapping_luts",
"wayland",
"x11",
"zstd_rust",
] }
clap = { version = "4.5", features = ["derive"] }
etcetera = "0.11"
image = { version = "0.25", default-features = false, features = ["png", "ico"] }
parley_ratatui = "0.3.4"
portable-pty = "0.8"
ratatui = "0.30"
rust-embed = "8.5"
serde = { version = "1.0", features = ["derive"] }
shellexpand = "3.1"
stl_io = "0.11.0"
tobj = "4.0"
toml = "0.8"
vt100 = "0.16"
winit = { version = "0.30", default-features = false }
[build-dependencies]
winresource = "0.1.31"
[profile.dev]
opt-level = 1
incremental = false
[profile.dev.package."*"]
opt-level = 3
[profile.release]
strip = true
lto = "fat"
codegen-units = 1
opt-level = 3
[profile.dist]
inherits = "release"
lto = "thin"