prometheus-client-mmap 1.2.9-arm64-darwin → 1.2.10-arm64-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.
- checksums.yaml +4 -4
- data/Cargo.lock +101 -120
- data/ext/fast_mmaped_file_rs/Cargo.lock +765 -0
- data/ext/fast_mmaped_file_rs/Cargo.toml +15 -15
- data/ext/fast_mmaped_file_rs/extconf.rb +1 -0
- data/lib/3.1/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.2/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.3/fast_mmaped_file_rs.bundle +0 -0
- data/lib/3.4/fast_mmaped_file_rs.bundle +0 -0
- data/lib/prometheus/client/version.rb +1 -1
- metadata +3 -2
@@ -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.
|
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.
|
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.
|
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.
|
27
|
-
sha2 = "0.10"
|
28
|
-
tempfile = "3.
|
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"
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
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.
|
4
|
+
version: 1.2.10
|
5
5
|
platform: arm64-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-
|
14
|
+
date: 2025-05-14 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: base64
|
@@ -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
|