-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathCargo.toml
More file actions
55 lines (46 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
55 lines (46 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "temporal-sdk-core-c-bridge"
version = "0.1.0"
edition = "2024"
[lib]
name = "temporal_sdk_core_c_bridge"
crate-type = ["cdylib"]
[dependencies]
anyhow = "1.0"
async-trait = "0.1"
futures-util = { version = "0.3", default-features = false }
http = "1.3"
libc = "0.2"
prost = { workspace = true }
# We rely on Cargo semver rules not updating a 0.x to 0.y. Per the rand
# documentation, before 1.0, minor 0.x updates _can_ break portability which can
# cause non-determinism.
rand = "0.9.2"
rand_pcg = "0.9.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = "1.47"
tokio-stream = "0.1"
tokio-util = "0.7"
tonic = { workspace = true }
tracing = "0.1"
url = "2.5"
# This is only needed as an explicit dependency so we can enable static as a feature
xz2 = { version = "0.1" }
[dependencies.temporal-client]
path = "../client"
[dependencies.temporal-sdk-core]
path = "../core"
features = ["ephemeral-server"]
[dependencies.temporal-sdk-core-api]
path = "../core-api"
features = ["envconfig"]
[dependencies.temporal-sdk-core-protos]
path = "../sdk-core-protos"
[dev-dependencies]
futures-util = "0.3"
thiserror = { workspace = true }
[build-dependencies]
cbindgen = { version = "0.29", default-features = false }
[features]
xz2-static = ["xz2/static"]