forked from face-hh/bruh
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (29 loc) · 838 Bytes
/
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
[package]
name = "viv"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
base64 = "0.21.2"
colors-transform = "0.2.11"
css-color-parser = "0.1.2"
eframe = "0.22.0"
egui_extras = { version = "0.22", features = ["image"] }
encoding = "0.2.33"
encoding_rs = "0.8.32"
env_logger = "0.10.0"
image = { version = "0.24", default-features = false, features = ["png"] }
rand = "0.8.5"
show-image = "0.13.1"
skia-safe = "0.63.0"
winapi = "0.3"
[[bin]]
name = "viv"
path = "main.rs"
[dependencies.uuid]
version = "1.11.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]