forked from sebcrozet/kiss3d
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
49 lines (43 loc) · 954 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
authors = ["Sébastien Crozet <developer@crozet.re>"]
name = "kiss3d"
version = "0.35.0"
autoexamples = true
description = "3D graphics engine for Rust."
edition = "2018"
keywords = ["3D", "graphics", "OpenGL", "KISS"]
license = "BSD-3-Clause"
readme = "README.md"
repository = "https://github.com/sebcrozet/kiss3d"
include = [
"src/**/*.rs",
"src/**/*.frag",
"src/**/*.vert",
"src/text/*.ttf",
"examples/**/*.rs",
"examples/media",
"examples/Cargo.toml",
"Cargo.toml",
"LICENSE",
"Readme.md",
]
[lib]
name = "kiss3d"
path = "src/lib.rs"
[dependencies]
bitflags = "1.2"
either = "1"
glow = "0.12"
image = "0.24"
libc = "0.2"
nalgebra = "0.33.2"
num-traits = "0.2"
rusttype = { version = "0.8.3", features = ["gpu_cache"] }
serde = "1"
serde_derive = "1"
glutin = "0.26"
parry3d = "0.18.0"
[dev-dependencies]
env_logger = "0.11.6"
nalgebra = { version = "0.33.2", features = ["rand"] }
rand = "0.8"