Cargo.toml 371 B

12345678910111213
  1. [package]
  2. name = "example_actor"
  3. version = "0.1.0"
  4. edition = "2021"
  5. description = "An example implementation of an actor."
  6. [lib]
  7. crate-type = ["cdylib"]
  8. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  9. [dependencies]
  10. wit-bindgen = { git = "https://github.com/bytecodealliance/wit-bindgen.git", tag="wit-bindgen-0.7.0" }