mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-19 21:17:52 +00:00
update temporal SDK version + other Rust dependencies, strip debug symbols from generated libraries in production builds
This commit is contained in:
parent
acaebbd75e
commit
39e1aabd2a
1246
rustybits/Cargo.lock
generated
1246
rustybits/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,3 +1,6 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = ["smeeclient", "zeroidc"]
|
||||
|
||||
[profile.release]
|
||||
strip = "debuginfo"
|
||||
|
@ -11,7 +11,7 @@ crate-type = ["staticlib", "rlib"]
|
||||
[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-client = { git = "https://github.com/temporalio/sdk-core", branch = "master", features = ["telemetry"] }
|
||||
temporal-sdk-core-protos = { git = "https://github.com/temporalio/sdk-core", branch = "master" }
|
||||
tokio = { version = "1.29", features = ["full"] }
|
||||
url = { version = "2" }
|
||||
|
@ -59,7 +59,7 @@ impl SmeeClient {
|
||||
.client_version(CLIENT_VERSION)
|
||||
.build()?;
|
||||
|
||||
let con = rt.block_on(async { c.connect(namespace.to_string(), None, None).await })?;
|
||||
let con = rt.block_on(async { c.connect(namespace.to_string(), None).await })?;
|
||||
|
||||
Ok(Self {
|
||||
tokio_rt: rt,
|
||||
@ -77,6 +77,8 @@ impl SmeeClient {
|
||||
task_timeout: None,
|
||||
cron_schedule: None,
|
||||
search_attributes: None,
|
||||
enable_eager_workflow_start: false,
|
||||
retry_policy: Some(Default::default()),
|
||||
};
|
||||
|
||||
let payload = vec![params.as_json_payload()?];
|
||||
|
Loading…
Reference in New Issue
Block a user