Cargo.toml 726 B

123456789101112131415161718192021
  1. [package]
  2. name = "smeeclient"
  3. version = "0.1.0"
  4. edition = "2021"
  5. [lib]
  6. crate-type = ["staticlib", "rlib"]
  7. # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
  8. [dependencies]
  9. serde = { version = "1", features = ["derive"] }
  10. temporal-sdk = { git = "https://github.com/temporalio/sdk-core", branch = "master" }
  11. temporal-client = { git = "https://github.com/temporalio/sdk-core", branch = "master", features = ["telemetry"] }
  12. temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", branch = "master" }
  13. tokio = { version = "1.43", features = ["full"] }
  14. url = { version = "2" }
  15. uuid = { version = "1.4", features = ["v4"] }
  16. [build-dependencies]
  17. cbindgen = "0.20"