-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 710 Bytes
/
Cargo.toml
File metadata and controls
24 lines (21 loc) · 710 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[package]
name = "iced_plot"
version = "0.4.0"
edition = "2024"
license = "MIT"
description = "A GPU-accelerated plotting widget for Iced."
repository = "https://github.com/donkeyteethUX/iced_plot/"
homepage = "https://github.com/donkeyteethUX/iced_plot/"
readme = "README.md"
categories = ["gui", "graphics", "visualization"]
keywords = ["iced", "plot", "widget", "wgpu", "plotting"]
[dependencies]
bytemuck = { version = "1.25", features = ["derive"] }
glam = "0.25"
iced = "0.14"
indexmap = "2.13"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.4", features = ["wasm_js"] }
[dev-dependencies]
rand = "0.10"
rand_distr = "0.6"