-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1.24 KB
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1.24 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
[package]
name = "rolf"
version = "0.1.0"
authors = ["Christopher Chang <chiggiechang@gmail.com>"]
edition = "2021"
[workspace]
members = [
"rolf-parser",
"rolf-grid",
]
[dependencies]
crossterm = "0.20" # Cross-platform terminal drawing
open = "1.7.0" # Cross-platform file opener
which = "4.1.0" # Cross-platform equivalent of Unix 'which'
image = "0.23.14" # For decoding images
libc = "0.2" # Obtain terminal width and height in pixels (on Linux)
base64 = "0.13" # To encode file names for the kitty graphics protocol
tempfile = "3.2" # To store image data in temporary files for kitty
chrono = "0.4" # To convert the Unix timestamp into a timezone-aware date
whoami = "1.2.1"
nanoserde = "0.1.29" # For parsing json
thiserror = "1.0"
scopeguard = "1.1" # For the defer macro
[dependencies.rolf-parser]
path = "rolf-parser"
[dependencies.rolf-grid]
path = "rolf-grid"
[target.'cfg(windows)'.dependencies.windows]
version = "0.32.0"
features = [
"alloc",
"Win32_Foundation",
"Win32_System_Time",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_WindowsAndMessaging",
]
# All dependencies (but not this crate itself or any workspace member)
# will be compiled with -Copt-level=3 . This includes build dependencies.
[profile.dev.package."*"]
opt-level = 3