Cargo.toml 717 B

1234567891011121314151617181920212223242526272829303132
  1. [package]
  2. name = "qcgpu"
  3. version = "1.0.0"
  4. authors = ["Adam Kelly <adamkelly2201@gmail.com>"]
  5. documentation = "https://qcgpu.github.io/qcgpu-rust/doc/qcgpu/index.html"
  6. homepage = "https://qcgpu.github.io"
  7. readme = "./README.md"
  8. keywords = ["quantum", "computation", "gpu", "simulation"]
  9. license = "MIT"
  10. exclude = ["examples/**/*"]
  11. [badges]
  12. travis-ci = { repository = "qcgpu/qcgpu-rust", branch = "master" }
  13. maintenance = { status = "actively-developed" }
  14. [dependencies]
  15. num-complex = "0.1.0"
  16. ocl = "0.18.0"
  17. rand = "0.5.1"
  18. failure = "0.1.1"
  19. failure_derive = "0.1.1"
  20. [[example]]
  21. name = "bell"
  22. doc = false
  23. path = "examples/bell-state.rs"
  24. [[example]]
  25. name = "super-dense"
  26. doc = false
  27. path = "examples/super-dense.rs"