You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
700 B
21 lines
700 B
[package] |
|
name = "smeeclient" |
|
version = "0.1.0" |
|
edition = "2021" |
|
|
|
[lib] |
|
crate-type = ["staticlib", "rlib"] |
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
|
|
|
[dependencies] |
|
serde = { version = "1", features = ["derive"] } |
|
temporal-sdk = { git = "https://github.com/temporalio/sdk-core", branch = "master" } |
|
temporal-client = { git = "https://github.com/temporalio/sdk-core", branch = "master" } |
|
temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", branch = "master" } |
|
tokio = { version = "1.29", features = ["full"] } |
|
url = { version = "2" } |
|
uuid = { version = "1.4", features = ["v4"] } |
|
|
|
[build-dependencies] |
|
cbindgen = "0.20"
|
|
|