prometheus-client-mmap 1.2.9-aarch64-linux-gnu → 1.3.0-aarch64-linux-gnu

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.
@@ -6,26 +6,26 @@ edition = "2021"
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
7
 
8
8
  [dependencies]
9
- hashbrown = "0.14"
10
- libc = "0.2"
11
- magnus = { version = "0.7", features = ["rb-sys"] }
12
- memmap2 = "0.9"
9
+ hashbrown = "0.15.3"
10
+ libc = "0.2.172"
11
+ magnus = { version = "0.8.2", features = ["rb-sys"] }
12
+ memmap2 = "0.9.5"
13
13
  # v0.26 cannot be built on CentOS 7 https://github.com/nix-rust/nix/issues/1972
14
14
  nix = { version = "0.25", features = ["mman"] } # mman used for MsFlags
15
- rb-sys = { version = "0.9", features = ["stable-api-compiled-fallback"] }
16
- serde = { version = "1.0", features = ["derive"] }
17
- serde_json = { version = "1.0", features = ["raw_value"] }
18
- smallvec = { version = "1.14", features = ["serde"] }
19
- thiserror = "2.0"
15
+ rb-sys = { version = "0.9.117", features = ["stable-api-compiled-fallback"] }
16
+ serde = { version = "1.0.219", features = ["derive"] }
17
+ serde_json = { version = "1.0.140", features = ["raw_value"] }
18
+ smallvec = { version = "1.15", features = ["serde"] }
19
+ thiserror = "2.0.12"
20
20
 
21
21
  [dev-dependencies]
22
- bstr = "1.11"
23
- indoc = "2.0"
22
+ bstr = "1.12"
23
+ indoc = "2.0.6"
24
24
  # We need the `embed` feature to run tests, but this triggers failures when building as a Gem.
25
- magnus = { version = "0.7", features = ["rb-sys","embed"] }
26
- rand = "0.8"
27
- sha2 = "0.10"
28
- tempfile = "3.17"
25
+ magnus = { version = "0.8.2", features = ["rb-sys","embed"] }
26
+ rand = "0.9.1"
27
+ sha2 = "0.10.9"
28
+ tempfile = "3.19.1"
29
29
 
30
30
  [build-dependencies]
31
31
  rb-sys-env = "0.2.2"
@@ -4,6 +4,7 @@ require "rb_sys/mkmf"
4
4
  if find_executable('rustc')
5
5
  create_rust_makefile("fast_mmaped_file_rs") do |r|
6
6
  r.auto_install_rust_toolchain = false
7
+ r.extra_cargo_args = ["--locked"]
7
8
 
8
9
  if enable_config('fail-on-warning')
9
10
  r.extra_rustflags = ["-Dwarnings"]
Binary file
Binary file
Binary file
Binary file
@@ -1,5 +1,5 @@
1
1
  module Prometheus
2
2
  module Client
3
- VERSION = '1.2.9'.freeze
3
+ VERSION = '1.3.0'.freeze
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prometheus-client-mmap
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.9
4
+ version: 1.3.0
5
5
  platform: aarch64-linux-gnu
6
6
  authors:
7
7
  - Tobias Schmidt
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2025-02-19 00:00:00.000000000 Z
14
+ date: 2025-11-19 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: base64
@@ -61,14 +61,14 @@ dependencies:
61
61
  requirements:
62
62
  - - "~>"
63
63
  - !ruby/object:Gem::Version
64
- version: 0.9.109
64
+ version: 0.9.117
65
65
  type: :runtime
66
66
  prerelease: false
67
67
  version_requirements: !ruby/object:Gem::Requirement
68
68
  requirements:
69
69
  - - "~>"
70
70
  - !ruby/object:Gem::Version
71
- version: 0.9.109
71
+ version: 0.9.117
72
72
  - !ruby/object:Gem::Dependency
73
73
  name: fuzzbert
74
74
  requirement: !ruby/object:Gem::Requirement
@@ -173,6 +173,7 @@ files:
173
173
  - Cargo.lock
174
174
  - Cargo.toml
175
175
  - README.md
176
+ - ext/fast_mmaped_file_rs/Cargo.lock
176
177
  - ext/fast_mmaped_file_rs/Cargo.toml
177
178
  - ext/fast_mmaped_file_rs/README.md
178
179
  - ext/fast_mmaped_file_rs/build.rs