/ Cargo.toml
Cargo.toml
 1  [package]
 2  name = "app-engine"
 3  version = "0.1.0"
 4  edition = "2021"
 5  
 6  [dependencies]
 7  # TODO switch to the stable SDK https://github.com/temporalio/sdk-core/issues/222
 8  temporal-client = { git = "https://github.com/temporalio/sdk-core", rev = "6e601115daa3b9ccaa9d0d383f926aaa5953ea3d", version = "0.1.0" }
 9  temporal-sdk = { git = "https://github.com/temporalio/sdk-core", rev = "6e601115daa3b9ccaa9d0d383f926aaa5953ea3d", version = "0.1.0-alpha.1" }
10  temporal-sdk-core = { git = "https://github.com/temporalio/sdk-core", rev = "6e601115daa3b9ccaa9d0d383f926aaa5953ea3d", version = "0.1.0" }
11  temporal-sdk-core-api = { git = "https://github.com/temporalio/sdk-core", rev = "6e601115daa3b9ccaa9d0d383f926aaa5953ea3d", version = "0.1.0" }
12  temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", rev = "6e601115daa3b9ccaa9d0d383f926aaa5953ea3d", version = "0.1.0" }
13  
14  anyhow = "1"
15  bollard = "0.18"
16  futures = "0.3"
17  git2 = { version = "0.20" }
18  serde = { version = "1", features = ["derive"] }
19  serde_json = "1"
20  serde_yaml = "0.9"
21  tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
22  tracing = "0.1"
23  tracing-subscriber = { version = "0.3", features = ["env-filter"] }