Cargo.toml 984 B

123456789101112131415161718192021
  1. [package]
  2. name = "p3d"
  3. version = "0.1.0"
  4. authors = ["mish"]
  5. edition = "2018"
  6. [build]
  7. target = "wasm32-unknown-unknown"
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. libm = { version = "0.2", default-features = false }
  11. cgmath = { version = "0.18", git = "https://github.com/3Dpass/cgmath", branch = "master", default-features = false }
  12. tri-mesh = { version = "0.5.0", git = "https://github.com/3Dpass/tri-mesh", branch = "dev", default-features = false }
  13. obj-rs = { version = "0.7", git = "https://github.com/3Dpass/obj-rs", branch = "dev", default-features = false }
  14. ndarray = { version = "0.15", git = "https://github.com/3Dpass/ndarray", branch = "dev", default-features = false }
  15. peroxide = { version = "0.30", git = "https://github.com/3Dpass/Peroxide", branch = "devel", default-features = false }
  16. sha2 = { version = "0.9.3", default-features = false }
  17. base16ct = { version = "0.1", default-features = false }