Cargo.toml 379 B

12345678910111213141516171819202122232425262728
  1. [package]
  2. name = "v86"
  3. version = "0.1.0"
  4. publish = false
  5. [dev-dependencies]
  6. quickcheck = "0.6.2"
  7. [features]
  8. default = []
  9. profiler = []
  10. profiler_instrument = []
  11. [lib]
  12. crate-type = ["cdylib"]
  13. path = "src/rust/lib.rs"
  14. [profile.dev]
  15. lto = false
  16. opt-level = 2
  17. panic = "abort"
  18. overflow-checks = false
  19. [profile.release]
  20. lto = true
  21. opt-level = 3
  22. incremental = false
  23. panic = "abort"