tasker-rb 0.1.2 → 0.1.3
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 +31 -21
- 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: 48bc565fc5b7dc34cb72b779fda4564b97702cd5b38974e1cdfc871278cd57a8
|
|
4
|
+
data.tar.gz: 320ebed3cf7dcad32306591a6532ee6cc36428c058dbe413ca0e0848938b178c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e7a0606f97fd3acb3d4b98c44c5ed94d651137df0e7d04ea16755f15de8dd91ba88de294b2a3dba1db97225f536405e6b8586c5c2490b066acc51ead88e1b6f3
|
|
7
|
+
data.tar.gz: c1902c6fa5c0a9da9d578e6da64b38715f2d25acbb6afc9289fbca4665dfae8706ebe1607d38786af73f1b1d2fd53f58b8c3025563690111accf64796c24f053
|
data/ext/tasker_core/Cargo.toml
CHANGED
|
@@ -30,47 +30,57 @@ crate-type = ["cdylib"]
|
|
|
30
30
|
name = "tasker_rb"
|
|
31
31
|
|
|
32
32
|
[dependencies]
|
|
33
|
-
anyhow =
|
|
33
|
+
anyhow = "1.0"
|
|
34
34
|
# Async trait support for FrameworkIntegration
|
|
35
|
-
async-trait =
|
|
35
|
+
async-trait = "0.1"
|
|
36
36
|
# Time handling for Ruby Time ↔ Rust DateTime conversion
|
|
37
|
-
chrono = {
|
|
37
|
+
chrono = { version = "0.4.43", features = ["serde"] }
|
|
38
38
|
# Environment variable loading
|
|
39
|
-
dotenvy =
|
|
39
|
+
dotenvy = "0.15"
|
|
40
40
|
# Ruby FFI
|
|
41
41
|
# NOTE: "embed" feature removed for M4 Pro compatibility (TAS-XXX)
|
|
42
42
|
# Static linking with embed causes segfaults on Apple M4 Pro due to
|
|
43
43
|
# ARM64 FEAT_LSE2 atomic instruction incompatibility
|
|
44
44
|
magnus = { version = "0.8" }
|
|
45
45
|
# Once Cell
|
|
46
|
-
once_cell =
|
|
46
|
+
once_cell = "1.19"
|
|
47
47
|
# Serde for serialization/deserialization
|
|
48
|
-
|
|
48
|
+
# NOTE: Pinned to match workspace — serde 1.0.220+ has breaking changes
|
|
49
|
+
serde = { version = "=1.0.228", features = ["derive", "std"] }
|
|
49
50
|
# Serialization for Ruby ↔ Rust data conversion
|
|
50
|
-
serde_json =
|
|
51
|
+
serde_json = "1.0"
|
|
51
52
|
serde_magnus = "0.10"
|
|
52
|
-
serde_yaml =
|
|
53
|
+
serde_yaml = "0.9"
|
|
53
54
|
# Database (needed for PgPool)
|
|
54
|
-
sqlx = {
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
55
|
+
sqlx = { version = "0.8", features = [
|
|
56
|
+
"bigdecimal",
|
|
57
|
+
"chrono",
|
|
58
|
+
"json",
|
|
59
|
+
"macros",
|
|
60
|
+
"migrate",
|
|
61
|
+
"postgres",
|
|
62
|
+
"runtime-tokio-rustls",
|
|
63
|
+
"uuid",
|
|
64
|
+
] }
|
|
65
|
+
# Core library dependencies
|
|
66
|
+
# Both path (for workspace builds) and version (for standalone/published builds).
|
|
67
|
+
# cargo publish strips the path field, leaving only the version for crates.io resolution.
|
|
68
|
+
# Version pins are updated by scripts/release/update-versions.sh during release-prepare.
|
|
69
|
+
tasker-shared = { path = "../../../../tasker-shared", version = "=0.1.2" }
|
|
70
|
+
tasker-worker = { path = "../../../../tasker-worker", version = "=0.1.2" }
|
|
58
71
|
# Error handling
|
|
59
|
-
thiserror =
|
|
72
|
+
thiserror = "2.0"
|
|
60
73
|
# Async runtime for blocking on futures in FFI
|
|
61
|
-
tokio = {
|
|
74
|
+
tokio = { version = "1.49", features = ["rt-multi-thread"] }
|
|
62
75
|
# Logging
|
|
63
|
-
tracing =
|
|
76
|
+
tracing = "0.1"
|
|
64
77
|
# UUID generation for event bridge
|
|
65
|
-
uuid = {
|
|
78
|
+
uuid = { version = "1.11", features = ["serde", "v4", "v7"] }
|
|
66
79
|
# Project root detection
|
|
67
|
-
workspace_tools = {
|
|
80
|
+
workspace_tools = { version = "0.11.0", features = ["full"] }
|
|
68
81
|
|
|
69
82
|
[dev-dependencies]
|
|
70
|
-
tasker-core = { package = "tasker-core", path = "../../../../" }
|
|
83
|
+
tasker-core = { package = "tasker-core", path = "../../../../", version = "=0.1.2" }
|
|
71
84
|
|
|
72
85
|
[features]
|
|
73
86
|
default = []
|
|
74
|
-
|
|
75
|
-
[lints]
|
|
76
|
-
workspace = true
|
data/lib/tasker_core/version.rb
CHANGED