alain 0.8.0 → 0.8.1

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: 87db3c79dceb1f5b215cbe5f5a5ea3328cb0b0343e8af9154744493f6836fe4e
4
- data.tar.gz: a14af1fa9cd9663a404dc353760029b6ebc15d067e0f0b1ba9068a39a8f8f301
3
+ metadata.gz: 0db76659f3c4add8255c897368c5398f887cc3ddf3af51a8174cfed47452055e
4
+ data.tar.gz: f408c3c7341eb1336bad3ccafeda7115334293e877b0d8e06e211490abfd42d2
5
5
  SHA512:
6
- metadata.gz: c8a9db1a02f42fdf828558f4912244d40620e2f9c3ba4b4c0890d4b5d15fa3e938e84d421f9b711af443531593220fdb21774dd3bf3423ad05bb131855a14198
7
- data.tar.gz: 7d2b1f0faa989bdd3c8e6de16c025eff4122531005efbb37ac9a71b5aabfc2118d99fb41d7189e3d729fdc1450400fa52580e7f775af2a09139c5b053c4ec5ef
6
+ metadata.gz: c221d61bcd4dc9d50d23f898aae25516b08ab1658527f5d5c1cb6adfefa0f8000301140f12ed0dcbc30ab0a745044f43c4396321f058b62931d56601316bc345
7
+ data.tar.gz: 5a96bb3a5883e1f285c93fd0d08ee286cc1fae3639bf2f591668b131eff0561d5fda026b80883b6c1300d336272972e26ac4790218a0b45036900fbd78c996a2
data/lib/alain/cargo.rb CHANGED
@@ -50,13 +50,14 @@ module Alain #:nodoc:
50
50
 
51
51
  def dependencies(server_conf)
52
52
  {
53
- 'prost' => %(prost = "0.13"),
54
- 'prost-types' => %(prost-types = "0.13"),
55
- 'signal-hook' => %(signal-hook = "0.3.9"),
56
- 'signal-hook-tokio' => %(signal-hook-tokio = { version = "0.3.0", features = ["futures-v0_3"] }),
53
+ 'prost' => %(prost = "0.14"),
54
+ 'prost-types' => %(prost-types = "0.14"),
55
+ 'signal-hook' => %(signal-hook = "0.4"),
56
+ 'signal-hook-tokio' => %(signal-hook-tokio = { version = "0.4", features = ["futures-v0_3"] }),
57
57
  'tokio' => %(tokio = { version = "1.0", features = ["full"] }),
58
58
  'tokio-stream' => %(tokio-stream = "0.1.2"),
59
- 'tonic' => %(tonic = "0.12"),
59
+ 'tonic' => %(tonic = "0.14"),
60
+ 'tonic-prost' => %(tonic-prost = "0.14"),
60
61
  'triggered' => %(triggered = "0.1.2")
61
62
  }.tap do |dep|
62
63
  if server_conf
@@ -67,7 +68,7 @@ module Alain #:nodoc:
67
68
 
68
69
  def build_dependencies
69
70
  {
70
- 'tonic-build' => %(tonic-build = { version = "0.12", features = ["prost"] }),
71
+ 'tonic-prost-build' => %(tonic-prost-build = { version = "0.14" }),
71
72
  }
72
73
  end
73
74
  end
data/lib/alain/proto.rb CHANGED
@@ -38,7 +38,7 @@ module Alain #:nodoc:
38
38
 
39
39
  def compile_protos
40
40
  <<~EOS
41
- tonic_build::compile_protos("#{@path}")?;
41
+ tonic_prost_build::compile_protos("#{@path}")?;
42
42
  EOS
43
43
  end
44
44
 
data/lib/alain/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Alain
4
- VERSION = "0.8.0"
4
+ VERSION = "0.8.1"
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: alain
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chuma Takahiro
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2024-12-23 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: tomlrb
@@ -24,6 +23,20 @@ dependencies:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
25
  version: '2.0'
26
+ - !ruby/object:Gem::Dependency
27
+ name: racc
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.8'
33
+ type: :runtime
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.8'
27
40
  description: Code generator for rust prost
28
41
  email:
29
42
  - co.chuma@gmail.com
@@ -53,7 +66,6 @@ metadata:
53
66
  homepage_uri: https://github.com/chumaltd/alain
54
67
  source_code_uri: https://github.com/chumaltd/alain
55
68
  changelog_uri: https://github.com/chumaltd/alain/blob/main/CHANGELOG.md
56
- post_install_message:
57
69
  rdoc_options: []
58
70
  require_paths:
59
71
  - lib
@@ -68,8 +80,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
68
80
  - !ruby/object:Gem::Version
69
81
  version: '0'
70
82
  requirements: []
71
- rubygems_version: 3.4.10
72
- signing_key:
83
+ rubygems_version: 3.6.7
73
84
  specification_version: 4
74
85
  summary: Code generator for rust prost
75
86
  test_files: []