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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 6c505f5e0ee2615e50e4bd56c0c6e3fd7900837dcaf8454f828e197f15f9328d
4
- data.tar.gz: a4fbdabbf56b6798bc0b73d16fe894d3b10e92a554a9245a361c2724f16c5a43
3
+ metadata.gz: 48bc565fc5b7dc34cb72b779fda4564b97702cd5b38974e1cdfc871278cd57a8
4
+ data.tar.gz: 320ebed3cf7dcad32306591a6532ee6cc36428c058dbe413ca0e0848938b178c
5
5
  SHA512:
6
- metadata.gz: c847a219fe05381929501d8789c40e2be73436910461b92219c96d4510eb6ef51eb8bf371ad8555532e3fe4f6111af5706272600c603d90fb884f0c65fba02e1
7
- data.tar.gz: 213e3946bef1bc91de6f9e69614509f48061079233e71697658e8eec556fa6f12a5e940e8d509671a10b77fbf4216ec22e2d529646147ba638735b25f861b31e
6
+ metadata.gz: e7a0606f97fd3acb3d4b98c44c5ed94d651137df0e7d04ea16755f15de8dd91ba88de294b2a3dba1db97225f536405e6b8586c5c2490b066acc51ead88e1b6f3
7
+ data.tar.gz: c1902c6fa5c0a9da9d578e6da64b38715f2d25acbb6afc9289fbca4665dfae8706ebe1607d38786af73f1b1d2fd53f58b8c3025563690111accf64796c24f053
@@ -30,47 +30,57 @@ crate-type = ["cdylib"]
30
30
  name = "tasker_rb"
31
31
 
32
32
  [dependencies]
33
- anyhow = { workspace = true }
33
+ anyhow = "1.0"
34
34
  # Async trait support for FrameworkIntegration
35
- async-trait = { workspace = true }
35
+ async-trait = "0.1"
36
36
  # Time handling for Ruby Time ↔ Rust DateTime conversion
37
- chrono = { workspace = true }
37
+ chrono = { version = "0.4.43", features = ["serde"] }
38
38
  # Environment variable loading
39
- dotenvy = { workspace = true }
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 = { workspace = true }
46
+ once_cell = "1.19"
47
47
  # Serde for serialization/deserialization
48
- serde = { workspace = true }
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 = { workspace = true }
51
+ serde_json = "1.0"
51
52
  serde_magnus = "0.10"
52
- serde_yaml = { workspace = true }
53
+ serde_yaml = "0.9"
53
54
  # Database (needed for PgPool)
54
- sqlx = { workspace = true }
55
- # Core library dependency (relative path to parent)
56
- tasker-shared = { path = "../../../../tasker-shared" }
57
- tasker-worker = { path = "../../../../tasker-worker" }
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 = { workspace = true }
72
+ thiserror = "2.0"
60
73
  # Async runtime for blocking on futures in FFI
61
- tokio = { workspace = true, features = ["rt-multi-thread"] }
74
+ tokio = { version = "1.49", features = ["rt-multi-thread"] }
62
75
  # Logging
63
- tracing = { workspace = true }
76
+ tracing = "0.1"
64
77
  # UUID generation for event bridge
65
- uuid = { workspace = true }
78
+ uuid = { version = "1.11", features = ["serde", "v4", "v7"] }
66
79
  # Project root detection
67
- workspace_tools = { workspace = true }
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
@@ -3,7 +3,7 @@
3
3
  module TaskerCore
4
4
  # Version synchronization with the core Rust crate
5
5
  # This should be kept in sync with the Cargo.toml version
6
- VERSION = '0.1.2'
6
+ VERSION = '0.1.3'
7
7
 
8
8
  def self.version_info
9
9
  {
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tasker-rb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.2
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pete Taylor