prometheus-client-mmap 1.2.8-x86_64-darwin → 1.2.10-x86_64-darwin

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.2"
10
+ libc = "0.2.172"
11
+ magnus = { version = "0.7.1", 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.13", features = ["serde"] }
19
- thiserror = "2.0"
15
+ rb-sys = { version = "0.9.111", 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.15"
25
+ magnus = { version = "0.7.1", 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.8'.freeze
3
+ VERSION = '1.2.10'.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.8
4
+ version: 1.2.10
5
5
  platform: x86_64-darwin
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-02 00:00:00.000000000 Z
14
+ date: 2025-05-14 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: base64
@@ -170,7 +170,10 @@ extensions: []
170
170
  extra_rdoc_files: []
171
171
  files:
172
172
  - ".tool-versions"
173
+ - Cargo.lock
174
+ - Cargo.toml
173
175
  - README.md
176
+ - ext/fast_mmaped_file_rs/Cargo.lock
174
177
  - ext/fast_mmaped_file_rs/Cargo.toml
175
178
  - ext/fast_mmaped_file_rs/README.md
176
179
  - ext/fast_mmaped_file_rs/build.rs