Skip to content

Commit

Permalink
Filled up cargo manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
kvark committed Jun 9, 2017
1 parent 71e0562 commit 23d6fc7
Showing 1 changed file with 29 additions and 20 deletions.
49 changes: 29 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,28 +2,17 @@
name = "three"
version = "0.1.0"
authors = ["Dzmitry Malyshau <[email protected]>"]
license = "Apache-2.0"
description = "Three.js inspired 3D engine in Rust"
categories = ["graphics", "game-engines"]
keywords = ["gamedev", "graphics", "engine", "3D"]
homepage = "https://github.com/kvark/three-rs"
repository = "https://github.com/kvark/three-rs"
documentation = "https://docs.rs/three/"
exclude = ["doc", "bors.toml", ".travis.yml", "test_data"]

[lib]

[[example]]
name = "lights"

[[example]]
name = "materials"

[[example]]
name = "obj"

[[example]]
name = "shapes"

[[example]]
name = "sprite"

[[example]]
name = "aviator"
path = "examples/aviator/main.rs"

[lib]

[features]
default = ["opengl"]
Expand All @@ -47,3 +36,23 @@ glutin = { version = "0.8", optional = true }
[dev-dependencies]
env_logger = "0.4"
rand = "0.3"


[[example]]
name = "lights"

[[example]]
name = "materials"

[[example]]
name = "obj"

[[example]]
name = "shapes"

[[example]]
name = "sprite"

[[example]]
name = "aviator"
path = "examples/aviator/main.rs"

0 comments on commit 23d6fc7

Please sign in to comment.