-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (46 loc) · 1.59 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
[package]
name = "oklch-color-picker"
version = "1.15.0"
edition = "2021"
license = "MIT"
description = "A standalone graphical color picker using the Oklch color space. Allows output to hex, rgb, hsl and many other formats."
repository = "https://github.com/eero-lehtinen/oklch-color-picker"
readme = "README.md"
keywords = ["color", "oklch", "oklab", "utility", "color-picker"]
categories = ["visualization"]
[[bin]]
name = "oklch-color-picker"
[lib]
name = "parser_lua_module"
path = "src/parser_lua_module.rs"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0.90"
bevy_color = { version = "0.15.1", default-features = false }
clap = { version = "4.5.17", features = ["derive"] }
eframe = { version = "0.30.0", default-features = false, features = [
"accesskit",
"glow",
"wayland",
"x11",
"persistence",
] }
egui = { version = "0.30.0", default-features = false, features = ["rayon"] }
egui_extras = { version = "0.30.0", default-features = false, features = [
"serde",
] }
enum-map = "2.7.3"
lexical-parse-float = { version = "1.0.0", features = ["format"] }
once_cell = "1.19.0"
rand = { version = "0.8.5", features = ["small_rng"] }
getrandom = { version = "0.2.15", features = ["js"] }
strum = { version = "0.26.3", features = ["derive"] }
web-time = "1.1.0"
winnow = { version = "0.6.18", features = ["simd"] }
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
interprocess = { version = "2.2.1", features = ["tokio"] }
tokio = "1.40.0"
mlua = { version = "0.10.0", features = ["module", "luajit"] }
[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4"
web-sys = "0.3.70"