[package]
name = "three"
version = "0.3.0"
authors = ["Three-rs Developers"]
build = "build.rs"
exclude = ["doc/*", "bors.toml", ".travis.yml", "test_data/*"]
description = "Three.js inspired 3D engine in Rust"
homepage = "https://github.com/three-rs/three"
documentation = "https://docs.rs/three/"
keywords = ["gamedev", "graphics", "engine", "3D"]
categories = ["graphics", "game-engines"]
license = "MIT/Apache-2.0"
repository = "https://github.com/three-rs/three"
[lib]
[[example]]
name = "lights"
[[example]]
name = "materials"
[[example]]
name = "mesh-update"
[[example]]
name = "obj"
[[example]]
name = "reload"
[[example]]
name = "shapes"
[[example]]
name = "sprite"
[[example]]
name = "tutorial"
[[example]]
name = "group"
[[example]]
name = "anim"
[[example]]
name = "aviator"
path = "examples/aviator/main.rs"
[[example]]
name = "gltf-pbr-shader"
required-features = ["gltf-loader"]
[[example]]
name = "gltf-node-animation"
required-features = ["gltf-loader"]
[[example]]
name = "gltf-vertex-skinning"
required-features = ["gltf-loader"]
[[example]]
name = "gltf-morph-targets"
required-features = ["gltf-loader"]
[dependencies.arrayvec]
version = "0.4"
[dependencies.bitflags]
version = "1"
[dependencies.cgmath]
version = "0.15"
features = ["mint"]
[dependencies.derivative]
version = "1.0"
[dependencies.froggy]
version = "0.4.4"
[dependencies.genmesh]
version = "0.5"
[dependencies.gfx]
version = "0.17.1"
[dependencies.gfx_device_gl]
version = "0.15"
optional = true
[dependencies.gfx_glyph]
version = "0.8"
[dependencies.gfx_window_glutin]
version = "0.20"
optional = true
[dependencies.gltf]
version = "0.9.3"
features = ["names"]
optional = true
[dependencies.gltf-importer]
version = "0.9.3"
features = ["names"]
optional = true
[dependencies.gltf-utils]
version = "0.9.3"
features = ["names"]
optional = true
[dependencies.glutin]
version = "0.12"
optional = true
[dependencies.image]
version = "0.18"
[dependencies.includedir]
version = "0.2"
[dependencies.itertools]
version = "0.7"
[dependencies.log]
version = "0.4"
[dependencies.mint]
version = "0.5"
[dependencies.obj]
version = "0.8.1"
features = ["genmesh"]
[dependencies.phf]
version = "0.7.12"
[dependencies.quick-error]
version = "1.2"
[dependencies.rodio]
version = "0.5"
[dependencies.vec_map]
version = "0.8"
[dev-dependencies.env_logger]
version = "0.5"
[dev-dependencies.notify]
version = "4"
[dev-dependencies.rand]
version = "0.3"
[build-dependencies.includedir_codegen]
version = "0.2.0"
[features]
default = ["opengl"]
gltf-loader = ["gltf", "gltf-importer", "gltf-utils"]
opengl = ["gfx_device_gl", "gfx_window_glutin", "glutin"]