Cargo.toml 355 B

1234567891011121314151617
  1. [package]
  2. name = "digitalwatch"
  3. version = "0.1.0"
  4. edition = "2018"
  5. [dependencies]
  6. sccd = { path = "/home/maestro/thesis/repos/SCCD/python/sccd/../../rust" }
  7. # Only depend on wasm-bindgen when building for wasm32 architecture
  8. [target.'cfg(target_arch = "wasm32")'.dependencies]
  9. wasm-bindgen = "0.2"
  10. [lib]
  11. name = "digitalwatch"
  12. path = "digitalwatch.rs"