specs-physics

[Fork] Integration of Amethyst, SPECS and Nphysics together.
git clone https://git.jojolepro.com/specs-physics.git
Log | Files | Refs | README | LICENSE

Cargo.toml (1225B)


      1 [package]
      2 name = "specs-physics"
      3 version = "0.3.0"
      4 authors = ["Benjamin Amling <benjamin@amling.net>", "Kel <x@unclear.info>", "jojolepro <jojolepromain@gmail.com>"]
      5 repository = "https://github.com/amethyst/specs-physics.git"
      6 homepage = "https://github.com/amethyst/specs-physics.git"
      7 edition = "2018"
      8 
      9 license = "MIT"
     10 readme = "README.md"
     11 documentation = "https://docs.rs/specs-physics"
     12 description = "nphysics integration for the Specs entity component system"
     13 
     14 keywords = ["specs", "nphysics", "nphysics3d"]
     15 
     16 [features]
     17 default = []
     18 
     19 amethyst = ["amethyst_core", "amethyst_error"]
     20 
     21 [dependencies]
     22 log = "0.4.6"
     23 specs = "0.16.0"
     24 specs-hierarchy = "0.6.0"
     25 shrev = "1.1.1"
     26 nalgebra = "0.19.0"
     27 ncollide3d = "0.21.0"
     28 nphysics3d = "0.13.1"
     29 amethyst_core = { version = "0.10", optional = true }
     30 amethyst_error = { version = "0.5", optional = true }
     31 objekt = "0.1.2"
     32 
     33 [dev-dependencies]
     34 simple_logger = "1.2.0"
     35 approx = "0.3.2"
     36 
     37 [[example]]
     38 name = "basic"
     39 path = "examples/basic.rs"
     40 
     41 [[example]]
     42 name = "hierarchy"
     43 path = "examples/hierarchy.rs"
     44 
     45 [[example]]
     46 name = "positions"
     47 path = "examples/positions.rs"
     48 
     49 [[example]]
     50 name = "collision"
     51 path = "examples/collision.rs"
     52 
     53 [[example]]
     54 name = "events"
     55 path = "examples/events.rs"