Cargo.toml 1.0 KB

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