Cargo.toml 321 B

123456789101112131415161718
  1. [package]
  2. name = "wasm"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. digitalwatch = { path = "../codegen" }
  7. sccd = { path = "/home/maestro/thesis/repos/SCCD/src/sccd/../../rust" }
  8. wasm-bindgen = "0.2"
  9. [lib]
  10. name = "dwatch"
  11. path = "lib.rs"
  12. crate-type = ["cdylib", "rlib"]
  13. [profile.release]
  14. lto = true
  15. opt-level = 3