breaker_machines 0.10.2 → 0.11.0
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fd34f2d2c0993335422fcb7c9a2495af660ec6c59dde5f57c7f9da0841cb51db
|
|
4
|
+
data.tar.gz: fc1ba508ecbaf43dbf451ef81bcacb9b586a0003ca5148d66d80f4d51a53f926
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49eac0d2918c9cee306309f785009fe53ffbd4d4a26641132f2dfe8a069e0cb200a47a3d97a8748ae1bf52d4604969127d3c549db2e31cf6e25d0b95ce9eb65c
|
|
7
|
+
data.tar.gz: a08fa2490b8b2a3b1ac6bc44853540763875ce39ce439c860b682256f01ccfbdf5e5e63176f917d9c109a3593b573a32588dddb336c34d0a1023c00bbe4c15c5
|
|
@@ -1,18 +1,21 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "breaker-machines"
|
|
3
|
-
version = "0.7.
|
|
3
|
+
version = "0.7.6"
|
|
4
4
|
edition = "2024"
|
|
5
|
-
authors = ["Abdelkader Boudih <
|
|
5
|
+
authors = ["Abdelkader Boudih <oss@seuros.com>"]
|
|
6
6
|
license = "MIT"
|
|
7
7
|
description = "High-performance circuit breaker with fallback support and rate-based thresholds"
|
|
8
8
|
repository = "https://github.com/seuros/breaker_machines"
|
|
9
9
|
readme = "README.md"
|
|
10
|
-
keywords = ["circuit-breaker", "reliability", "fault-tolerance"]
|
|
10
|
+
keywords = ["circuit-breaker", "reliability", "fault-tolerance", "state-machine"]
|
|
11
11
|
categories = ["concurrency"]
|
|
12
12
|
|
|
13
13
|
[lib]
|
|
14
14
|
crate-type = ["lib"]
|
|
15
15
|
|
|
16
|
+
[features]
|
|
17
|
+
inspect = ["state-machines/inspect"]
|
|
18
|
+
|
|
16
19
|
[dependencies]
|
|
17
20
|
state-machines = { workspace = true }
|
|
18
21
|
chrono-machines = { workspace = true }
|
|
@@ -1,16 +1,18 @@
|
|
|
1
1
|
[package]
|
|
2
2
|
name = "breaker_machines_native"
|
|
3
|
-
version = "0.5.
|
|
3
|
+
version = "0.5.8"
|
|
4
4
|
edition = "2024"
|
|
5
|
-
authors = ["Abdelkader Boudih <
|
|
5
|
+
authors = ["Abdelkader Boudih <oss@seuros.com>"]
|
|
6
6
|
license = "MIT"
|
|
7
|
+
description = "Ruby FFI bindings for breaker-machines circuit breaker"
|
|
8
|
+
repository = "https://github.com/seuros/breaker_machines"
|
|
7
9
|
|
|
8
10
|
[lib]
|
|
9
11
|
crate-type = ["cdylib"]
|
|
10
12
|
|
|
11
13
|
[dependencies]
|
|
12
14
|
breaker-machines = { workspace = true }
|
|
13
|
-
magnus =
|
|
15
|
+
magnus = "0.8.2"
|
|
14
16
|
|
|
15
17
|
[build-dependencies]
|
|
16
18
|
rb-sys = "0.9"
|
|
@@ -12,9 +12,9 @@ def create_noop_makefile(message)
|
|
|
12
12
|
exit 0
|
|
13
13
|
end
|
|
14
14
|
|
|
15
|
-
# Skip native extension compilation
|
|
16
|
-
|
|
17
|
-
create_noop_makefile(
|
|
15
|
+
# Skip native extension compilation outside CRuby
|
|
16
|
+
unless RUBY_ENGINE == 'ruby'
|
|
17
|
+
create_noop_makefile("Skipping native extension on #{RUBY_ENGINE}")
|
|
18
18
|
end
|
|
19
19
|
|
|
20
20
|
# Check if Cargo is available
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: breaker_machines
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.11.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Abdelkader Boudih
|
|
@@ -150,7 +150,6 @@ extra_rdoc_files: []
|
|
|
150
150
|
files:
|
|
151
151
|
- LICENSE.txt
|
|
152
152
|
- README.md
|
|
153
|
-
- ext/breaker_machines_native/Cargo.toml
|
|
154
153
|
- ext/breaker_machines_native/core/Cargo.toml
|
|
155
154
|
- ext/breaker_machines_native/core/examples/basic.rs
|
|
156
155
|
- ext/breaker_machines_native/core/src/builder.rs
|