tasker-rb 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/ext/tasker_core/Cargo.toml +4 -4
- data/lib/tasker_core/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5b7af121276f9cd8450b5b9103799943663563f92b50771428b88dff58c7904a
|
|
4
|
+
data.tar.gz: cd3f52b4a01f2db907f753cb249655debe026f2921ecf93e06cef73ef137f5cb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8ca42048570dceb0f6144497a05aa8e435f0a7972c3fb420715a25c8dca4eaa98e1ed3a3ff7a9e69dcdd95b49ba48f91e56941621f7584c75b566496cb86702
|
|
7
|
+
data.tar.gz: 637fbd5f560f798907710aa2aa39c361cbc460e2f5915c36e94fe5f58dc49981f96b64555599b7d6b36c56ae209686a2e1debd76df49c9ea82d6d6f6d31c9776
|
data/ext/tasker_core/Cargo.toml
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "tasker-rb"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.3"
|
|
4
4
|
edition = "2021"
|
|
5
5
|
description = "Ruby bindings for tasker-core: High-performance workflow orchestration"
|
|
6
6
|
readme = "../../../../README.md"
|
|
@@ -66,8 +66,8 @@ sqlx = { version = "0.8", features = [
|
|
|
66
66
|
# Both path (for workspace builds) and version (for standalone/published builds).
|
|
67
67
|
# cargo publish strips the path field, leaving only the version for crates.io resolution.
|
|
68
68
|
# Version pins are updated by scripts/release/update-versions.sh during release-prepare.
|
|
69
|
-
tasker-shared = { path = "../../../../tasker-shared", version = "=0.1.
|
|
70
|
-
tasker-worker = { path = "../../../../tasker-worker", version = "=0.1.
|
|
69
|
+
tasker-shared = { path = "../../../../tasker-shared", version = "=0.1.3" }
|
|
70
|
+
tasker-worker = { path = "../../../../tasker-worker", version = "=0.1.3" }
|
|
71
71
|
# Error handling
|
|
72
72
|
thiserror = "2.0"
|
|
73
73
|
# Async runtime for blocking on futures in FFI
|
|
@@ -80,7 +80,7 @@ uuid = { version = "1.11", features = ["serde", "v4", "v7"] }
|
|
|
80
80
|
workspace_tools = { version = "0.11.0", features = ["full"] }
|
|
81
81
|
|
|
82
82
|
[dev-dependencies]
|
|
83
|
-
tasker-core = { package = "tasker-core", path = "../../../../", version = "=0.1.
|
|
83
|
+
tasker-core = { package = "tasker-core", path = "../../../../", version = "=0.1.3" }
|
|
84
84
|
|
|
85
85
|
[features]
|
|
86
86
|
default = []
|
data/lib/tasker_core/version.rb
CHANGED