forked from HumMan/box2d-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (31 loc) · 891 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
34
[package]
name = "box2d-rs"
version = "0.0.3"
authors = ["HumMan <kop3nha@gmail.com>"]
repository = "https://github.com/humman/box2d-rs"
description = "Port of Box2d to Rust"
readme = "README.md"
license = "MIT"
edition = "2018"
[dependencies]
bitflags = "1.3.2"
serde = {version = "1.0.133", features = ["derive"], optional = true}
strum = {version = "0.23", optional = true}
strum_macros = {version ="0.23", optional = true}
[features]
serde_support = ["serde", "strum", "strum_macros"]
[dev-dependencies]
clipboard = "0.5"
glium = { version = "0.30", default-features = true }
image = "0.23.14"
imgui = "0.8.2"
imgui-glium-renderer = "0.8.2"
imgui-winit-support = "0.8.2"
rand = "0.8.4"
itertools = "0.10.3"
serde = {version = "1.0.133", features = ["derive"]}
strum = {version = "0.23"}
strum_macros = {version ="0.23"}
serde_json = "1.0.74"
bincode = "1.3.3"
serde_yaml = "0.8.23"