Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@

- name: Install NAPI-RS CLI (macOS)
if: ${{ !matrix.use_docker }}
run: npm install -g @napi-rs/cli
run: npm install -g @napi-rs/cli@2.16.0 # Pinning to version 2 of napi-rs as version 3 has breaking changes with cli and threadedfunction

- name: Build NAPI-RS Binary (macOS)
if: ${{ !matrix.use_docker }}
Expand Down
60 changes: 29 additions & 31 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ serde_json = "1.0"
tokio = { version = "1", features = ["full", "test-util"] }
async-trait = "0.1"

# time
# TODO:GK pinned to 0.3.41 which is the last version that supports MSRV 1.75. When we move our rust version to 1.81 or higher, we should relax this pin.
time = { version = "=0.3.41" }

[workspace.metadata.release]
shared-version = true
pre-release-commit-message = "chore(crate): Release {{version}}"
4 changes: 2 additions & 2 deletions cohort_sdk_client/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cohort_sdk_client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kindredgroup/cohort_sdk_client",
"version": "0.3.8-dev",
"version": "0.3.9-beta.3",
"author": "Kindredgroup",
"license": "MIT",
"description": "The Cohort SDK library for Talos Certifier clients",
Expand Down
30 changes: 15 additions & 15 deletions examples/agent_client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
[package]
name = "agent_client"
version = "0.3.8-dev"
version = "0.3.9-beta.3"
edition = "2021"

[dev-dependencies]

talos_agent = { path = "../../packages/talos_agent", version = "0.3.8-dev" }
talos_rdkafka_utils = { path = "../../packages/talos_rdkafka_utils", version = "0.3.8-dev" }
examples_support = { path = "../../packages/examples_support", version = "0.3.8-dev" }
talos_agent = { path = "../../packages/talos_agent", version = "0.3.9-beta.3" }
talos_rdkafka_utils = { path = "../../packages/talos_rdkafka_utils", version = "0.3.9-beta.3" }
examples_support = { path = "../../packages/examples_support", version = "0.3.9-beta.3" }

async-channel = { version = "1.8.0" }
async-trait = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
rand = { version = "0.8.5" }
async-trait = { workspace = true }
env_logger = { workspace = true }
log = { workspace = true }
rand = { version = "0.8.5" }

rdkafka = { version = "0.34.0", features = ["sasl"] }
rdkafka = { version = "0.34.0", features = ["sasl"] }


serde = { workspace = true }
serde_json = { workspace = true }
strum = { version = "0.25", features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
uuid = { version = "1.4.1", features = ["v4"] }
time = { version = "0.3.17" }
serde = { workspace = true }
serde_json = { workspace = true }
strum = { version = "0.25", features = ["derive"] }
tokio = { workspace = true, features = ["full"] }
uuid = { version = "1.4.1", features = ["v4"] }
time = { workspace = true }
12 changes: 6 additions & 6 deletions examples/certifier_kafka_pg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
# [package]
name = "certifier_kafka_pg"
version = "0.3.8-dev"
version = "0.3.9-beta.3"
edition = "2021"
keywords = ["talos"]
description = "Talos Certifier using Kafka and Pg adapters"
Expand All @@ -17,11 +17,11 @@ tokio = { workspace = true }
refinery = { version = "0.8.7", features = ["tokio-postgres"] }

# internal crates
talos_certifier = { path = "../../packages/talos_certifier", version = "0.3.8-dev" }
talos_suffix = { path = "../../packages/talos_suffix", version = "0.3.8-dev" }
talos_certifier_adapters = { path = "../../packages/talos_certifier_adapters", version = "0.3.8-dev" }
talos_common_utils = { path = "../../packages/talos_common_utils", version = "0.3.8-dev" }
talos_rdkafka_utils = { path = "../../packages/talos_rdkafka_utils", version = "0.3.8-dev" }
talos_certifier = { path = "../../packages/talos_certifier", version = "0.3.9-beta.3" }
talos_suffix = { path = "../../packages/talos_suffix", version = "0.3.9-beta.3" }
talos_certifier_adapters = { path = "../../packages/talos_certifier_adapters", version = "0.3.9-beta.3" }
talos_common_utils = { path = "../../packages/talos_common_utils", version = "0.3.9-beta.3" }
talos_rdkafka_utils = { path = "../../packages/talos_rdkafka_utils", version = "0.3.9-beta.3" }

[dev-dependencies.cargo-husky]
version = "1"
Expand Down
Loading
Loading