-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
26 lines (24 loc) · 1.01 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
[package]
name = "figures"
version = "0.5.0"
rust-version = "1.70.0"
edition = "2021"
description = "A math library specialized for 2d screen graphics."
repository = "https://github.com/khonsulabs/figures"
license = "MIT OR Apache-2.0"
keywords = ["2d", "math", "graphics"]
categories = ["mathematics"]
readme = "./README.md"
[features]
# This only exists because we need a paltform selected when running unit tests
# with the winit feature enabled. This library doesn't need any specific
# platforms to be enabled, nor doesn't it activate any additional functionality
# when enabling this feature flag.
x11 = ["winit/x11"]
[dependencies]
bytemuck = { version = "1.13.1", features = ["derive"], optional = true }
wgpu = { version = "23.0.0", default-features = false, optional = true }
winit = { version = "0.30.0", default-features = false, optional = true }
euclid = { version = "0.22.9", default-features = false, optional = true }
intentional = "0.1.0"
serde = { version = "1.0.193", optional = true, features = ["derive"] }