itsi 0.2.2 → 0.2.3

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.
Files changed (54) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1 -1
  3. data/Cargo.lock +29 -30
  4. data/README.md +1 -0
  5. data/crates/itsi_scheduler/Cargo.toml +1 -1
  6. data/crates/itsi_server/Cargo.toml +1 -1
  7. data/crates/itsi_server/src/ruby_types/itsi_server/itsi_server_config.rs +26 -3
  8. data/docs/content/_index.md +1 -1
  9. data/docs/content/contact/_index.md +1 -1
  10. data/docs/content/directory_listing.jpg +0 -0
  11. data/docs/content/error_page.jpg +0 -0
  12. data/docs/content/getting_started/local_development.md +9 -2
  13. data/docs/content/getting_started/logging.md +1 -2
  14. data/docs/content/getting_started/signals.md +0 -1
  15. data/docs/hugo.yaml +3 -0
  16. data/gems/scheduler/Cargo.lock +74 -17
  17. data/gems/scheduler/itsi-scheduler.gemspec +2 -2
  18. data/gems/scheduler/lib/itsi/scheduler/version.rb +1 -1
  19. data/gems/server/Cargo.lock +28 -29
  20. data/gems/server/itsi-server.gemspec +2 -2
  21. data/gems/server/lib/itsi/http_request.rb +31 -34
  22. data/gems/server/lib/itsi/http_response.rb +10 -8
  23. data/gems/server/lib/itsi/passfile.rb +6 -6
  24. data/gems/server/lib/itsi/server/config/config_helpers.rb +33 -33
  25. data/gems/server/lib/itsi/server/config/dsl.rb +14 -19
  26. data/gems/server/lib/itsi/server/config/known_paths.rb +11 -7
  27. data/gems/server/lib/itsi/server/config/middleware/error_response.md +13 -0
  28. data/gems/server/lib/itsi/server/config/middleware/static_assets.md +40 -0
  29. data/gems/server/lib/itsi/server/config/option.rb +0 -1
  30. data/gems/server/lib/itsi/server/config/options/nodelay.md +2 -2
  31. data/gems/server/lib/itsi/server/config/options/reuse_address.md +1 -1
  32. data/gems/server/lib/itsi/server/config/typed_struct.rb +32 -35
  33. data/gems/server/lib/itsi/server/config.rb +107 -92
  34. data/gems/server/lib/itsi/server/default_app/default_app.rb +1 -1
  35. data/gems/server/lib/itsi/server/grpc/grpc_call.rb +4 -5
  36. data/gems/server/lib/itsi/server/grpc/grpc_interface.rb +6 -7
  37. data/gems/server/lib/itsi/server/rack/handler/itsi.rb +0 -1
  38. data/gems/server/lib/itsi/server/rack_interface.rb +0 -1
  39. data/gems/server/lib/itsi/server/route_tester.rb +25 -23
  40. data/gems/server/lib/itsi/server/typed_handlers/source_parser.rb +9 -7
  41. data/gems/server/lib/itsi/server/version.rb +1 -1
  42. data/gems/server/lib/itsi/server.rb +21 -21
  43. data/gems/server/lib/itsi/standard_headers.rb +80 -80
  44. data/gems/server/test/helpers/test_helper.rb +17 -16
  45. data/gems/server/test/middleware/test_log_requests.rb +54 -2
  46. data/gems/server/test/options/test_workers.rb +12 -5
  47. data/lib/itsi/version.rb +1 -1
  48. metadata +9 -13
  49. data/examples/static_assets_example.rb +0 -83
  50. data/grpc_test/Itsi.rb +0 -11
  51. data/grpc_test/echo.proto +0 -14
  52. data/grpc_test/echo_pb.rb +0 -16
  53. data/grpc_test/echo_service_impl.rb +0 -8
  54. data/grpc_test/echo_services_pb.rb +0 -22
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2fc0853d34dfcbdef3c9d065d4f1e63d78eb16185891280586a736aabc265710
4
- data.tar.gz: '0074897dc1785778b1a7102b78e8c78b2f75fdbdd484420cc521025205eba8e7'
3
+ metadata.gz: 4fdf40620de562e11312855b28c43e68949030215e42ace8c16bffc96b24d547
4
+ data.tar.gz: 5536bd92e23fe4613b5e5be195e2cca32b0b91c75cd4cd9b59eb77b6ab61b703
5
5
  SHA512:
6
- metadata.gz: f408680c69ebda75675b9da1f08cf300a79605b4f043b9427ec2707b325424de6ce87815ed29ec140ab8db0130faabd5cc740ecab19c726399291dc1818f343e
7
- data.tar.gz: ecdd5a1a2e15939921460d938584b912eb1417be8b34af58772d67214be5013d67979a0ef18c12f156ffcb1c7ebeacb4874604f7f187e673e8fc32f660a600a1
6
+ metadata.gz: cdbad133a03e1c96502e9b4d09a03baa4b057805c24a13dfe695a8361669f61b200a76de8e387848816401e47beb129f13fd43d257f8a5c83bc08d13b1ca01b3
7
+ data.tar.gz: 55151ec720b352f672624d16d2569ab36d9aee221471639f533067d85d7d825dd0d9a5a5f538676da1ab682abea4278c323616e7509a8b1108c9ea2adb9f61a2
data/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
- ## [0.2.2] - 2025-04-22
1
+ ## [0.2.3] - 2025-04-22
2
2
 
3
3
  - Public release!
4
4
  - https://itsi.fyi
data/Cargo.lock CHANGED
@@ -117,9 +117,9 @@ dependencies = [
117
117
 
118
118
  [[package]]
119
119
  name = "anyhow"
120
- version = "1.0.97"
120
+ version = "1.0.98"
121
121
  source = "registry+https://github.com/rust-lang/crates.io-index"
122
- checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
122
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
123
123
 
124
124
  [[package]]
125
125
  name = "arc-swap"
@@ -253,9 +253,9 @@ dependencies = [
253
253
 
254
254
  [[package]]
255
255
  name = "aws-lc-sys"
256
- version = "0.28.0"
256
+ version = "0.28.2"
257
257
  source = "registry+https://github.com/rust-lang/crates.io-index"
258
- checksum = "b9f7720b74ed28ca77f90769a71fd8c637a0137f6fae4ae947e1050229cff57f"
258
+ checksum = "bfa9b6986f250236c27e5a204062434a773a13243d2ffc2955f37bdba4c5c6a1"
259
259
  dependencies = [
260
260
  "bindgen",
261
261
  "cc",
@@ -467,9 +467,9 @@ dependencies = [
467
467
 
468
468
  [[package]]
469
469
  name = "brotli-decompressor"
470
- version = "4.0.2"
470
+ version = "4.0.3"
471
471
  source = "registry+https://github.com/rust-lang/crates.io-index"
472
- checksum = "74fa05ad7d803d413eb8380983b092cbbaf9a85f151b871360e7b00cd7060b37"
472
+ checksum = "a334ef7c9e23abf0ce748e8cd309037da93e606ad52eb372e4ce327a0dcfbdfd"
473
473
  dependencies = [
474
474
  "alloc-no-stdlib",
475
475
  "alloc-stdlib",
@@ -587,9 +587,9 @@ dependencies = [
587
587
 
588
588
  [[package]]
589
589
  name = "clap"
590
- version = "4.5.36"
590
+ version = "4.5.37"
591
591
  source = "registry+https://github.com/rust-lang/crates.io-index"
592
- checksum = "2df961d8c8a0d08aa9945718ccf584145eee3f3aa06cddbeac12933781102e04"
592
+ checksum = "eccb054f56cbd38340b380d4a8e69ef1f02f1af43db2f0cc817a4774d80ae071"
593
593
  dependencies = [
594
594
  "clap_builder",
595
595
  "clap_derive",
@@ -597,9 +597,9 @@ dependencies = [
597
597
 
598
598
  [[package]]
599
599
  name = "clap_builder"
600
- version = "4.5.36"
600
+ version = "4.5.37"
601
601
  source = "registry+https://github.com/rust-lang/crates.io-index"
602
- checksum = "132dbda40fb6753878316a489d5a1242a8ef2f0d9e47ba01c951ea8aa7d013a5"
602
+ checksum = "efd9466fac8543255d3b1fcad4762c5e116ffe808c8a3043d4263cd4fd4862a2"
603
603
  dependencies = [
604
604
  "anstream",
605
605
  "anstyle",
@@ -764,9 +764,9 @@ dependencies = [
764
764
 
765
765
  [[package]]
766
766
  name = "data-encoding"
767
- version = "2.8.0"
767
+ version = "2.9.0"
768
768
  source = "registry+https://github.com/rust-lang/crates.io-index"
769
- checksum = "575f75dfd25738df5b91b8e43e14d44bda14637a58fae779fd2b064f8bf3e010"
769
+ checksum = "2a2330da5de22e8a3cb63252ce2abb30116bf5265e89c0e01bc17015ce30a476"
770
770
 
771
771
  [[package]]
772
772
  name = "der-parser"
@@ -1176,9 +1176,9 @@ dependencies = [
1176
1176
 
1177
1177
  [[package]]
1178
1178
  name = "h2"
1179
- version = "0.4.8"
1179
+ version = "0.4.9"
1180
1180
  source = "registry+https://github.com/rust-lang/crates.io-index"
1181
- checksum = "5017294ff4bb30944501348f6f8e42e6ad28f42c8bbef7a74029aff064a4e3c2"
1181
+ checksum = "75249d144030531f8dee69fe9cea04d3edf809a017ae445e2abdff6629e86633"
1182
1182
  dependencies = [
1183
1183
  "atomic-waker",
1184
1184
  "bytes",
@@ -1363,7 +1363,7 @@ dependencies = [
1363
1363
  "bytes",
1364
1364
  "futures-channel",
1365
1365
  "futures-util",
1366
- "h2 0.4.8",
1366
+ "h2 0.4.9",
1367
1367
  "http 1.3.1",
1368
1368
  "http-body 1.0.1",
1369
1369
  "httparse",
@@ -1644,7 +1644,7 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
1644
1644
 
1645
1645
  [[package]]
1646
1646
  name = "itsi-scheduler"
1647
- version = "0.2.2"
1647
+ version = "0.2.3"
1648
1648
  dependencies = [
1649
1649
  "bytes",
1650
1650
  "derive_more",
@@ -1662,7 +1662,7 @@ dependencies = [
1662
1662
 
1663
1663
  [[package]]
1664
1664
  name = "itsi-server"
1665
- version = "0.2.2"
1665
+ version = "0.2.3"
1666
1666
  dependencies = [
1667
1667
  "argon2",
1668
1668
  "async-channel",
@@ -1699,7 +1699,7 @@ dependencies = [
1699
1699
  "parking_lot",
1700
1700
  "percent-encoding",
1701
1701
  "pin-project",
1702
- "rand 0.9.0",
1702
+ "rand 0.9.1",
1703
1703
  "rcgen",
1704
1704
  "redis",
1705
1705
  "regex",
@@ -1731,7 +1731,7 @@ dependencies = [
1731
1731
  "axum-server",
1732
1732
  "base64 0.22.1",
1733
1733
  "chrono",
1734
- "clap 4.5.36",
1734
+ "clap 4.5.37",
1735
1735
  "futures",
1736
1736
  "log",
1737
1737
  "num-bigint",
@@ -1868,9 +1868,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
1868
1868
 
1869
1869
  [[package]]
1870
1870
  name = "libc"
1871
- version = "0.2.171"
1871
+ version = "0.2.172"
1872
1872
  source = "registry+https://github.com/rust-lang/crates.io-index"
1873
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
1873
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
1874
1874
 
1875
1875
  [[package]]
1876
1876
  name = "libloading"
@@ -1879,7 +1879,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
1879
1879
  checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
1880
1880
  dependencies = [
1881
1881
  "cfg-if",
1882
- "windows-targets 0.52.6",
1882
+ "windows-targets 0.48.5",
1883
1883
  ]
1884
1884
 
1885
1885
  [[package]]
@@ -2393,9 +2393,9 @@ dependencies = [
2393
2393
 
2394
2394
  [[package]]
2395
2395
  name = "proc-macro2"
2396
- version = "1.0.94"
2396
+ version = "1.0.95"
2397
2397
  source = "registry+https://github.com/rust-lang/crates.io-index"
2398
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
2398
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
2399
2399
  dependencies = [
2400
2400
  "unicode-ident",
2401
2401
  ]
@@ -2428,7 +2428,7 @@ checksum = "b820744eb4dc9b57a3398183639c511b5a26d2ed702cedd3febaa1393caa22cc"
2428
2428
  dependencies = [
2429
2429
  "bytes",
2430
2430
  "getrandom 0.3.2",
2431
- "rand 0.9.0",
2431
+ "rand 0.9.1",
2432
2432
  "ring",
2433
2433
  "rustc-hash 2.1.1",
2434
2434
  "rustls",
@@ -2493,13 +2493,12 @@ dependencies = [
2493
2493
 
2494
2494
  [[package]]
2495
2495
  name = "rand"
2496
- version = "0.9.0"
2496
+ version = "0.9.1"
2497
2497
  source = "registry+https://github.com/rust-lang/crates.io-index"
2498
- checksum = "3779b94aeb87e8bd4e834cee3650289ee9e0d5677f976ecdb6d219e5f4f6cd94"
2498
+ checksum = "9fbfd9d094a40bf3ae768db9361049ace4c0e04a4fd6b359518bd7b73a73dd97"
2499
2499
  dependencies = [
2500
2500
  "rand_chacha 0.9.0",
2501
2501
  "rand_core 0.9.3",
2502
- "zerocopy",
2503
2502
  ]
2504
2503
 
2505
2504
  [[package]]
@@ -3089,9 +3088,9 @@ checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
3089
3088
 
3090
3089
  [[package]]
3091
3090
  name = "signal-hook-registry"
3092
- version = "1.4.2"
3091
+ version = "1.4.5"
3093
3092
  source = "registry+https://github.com/rust-lang/crates.io-index"
3094
- checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
3093
+ checksum = "9203b8055f63a2a00e2f593bb0510367fe707d7ff1e5c872de2f537b339e5410"
3095
3094
  dependencies = [
3096
3095
  "libc",
3097
3096
  ]
data/README.md CHANGED
@@ -4,6 +4,7 @@
4
4
  > The Serious Web Server, for Serious People
5
5
 
6
6
  [![Test](https://github.com/wouterken/itsi/actions/workflows/test.yml/badge.svg)](https://github.com/wouterken/itsi/actions/workflows/test.yml)
7
+ [![Gem Version](https://badge.fury.io/rb/itsi-server.svg?icon=si%3Arubygems)](https://badge.fury.io/rb/itsi-server)
7
8
 
8
9
  Itsi is a feature-packed, high performance web and application server, with first-class support for Ruby applications.
9
10
  It's a compliant Rack server. It’s also a well-equipped reverse proxy, API gateway, and static file server, controlled by an intuitive and elegant configuration API and DSL.
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "itsi-scheduler"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  edition = "2021"
5
5
  authors = ["Wouter Coppieters <wc@pico.net.nz>"]
6
6
  license = "MIT"
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "itsi-server"
3
- version = "0.2.2"
3
+ version = "0.2.3"
4
4
  edition = "2021"
5
5
  authors = ["Wouter Coppieters <wc@pico.net.nz>"]
6
6
  license = "MIT"
@@ -14,7 +14,7 @@ use magnus::{
14
14
  block::Proc,
15
15
  error::Result,
16
16
  value::{LazyId, ReprValue},
17
- RArray, RHash, Ruby, Symbol, Value,
17
+ RArray, RHash, Ruby, Symbol, TryConvert, Value,
18
18
  };
19
19
  use nix::{
20
20
  fcntl::{fcntl, FcntlArg, FdFlag},
@@ -124,9 +124,17 @@ impl ServerParams {
124
124
  debug!("Loading Itsi Scheduler");
125
125
  ruby.require("itsi/scheduler")?;
126
126
  }
127
- let routes_raw = self
127
+ let result_pair = self
128
128
  .middleware_loader
129
- .call::<_, Option<Value>>(())
129
+ .call::<(), RArray>(())
130
+ .inspect_err(|e| {
131
+ eprintln!("Error loading middleware: {:?}", e);
132
+ if let Some(err_value) = e.value() {
133
+ print_rb_backtrace(err_value);
134
+ }
135
+ })?;
136
+ let routes_raw = result_pair
137
+ .entry::<Option<Value>>(0)
130
138
  .inspect_err(|e| {
131
139
  eprintln!("Error loading middleware: {:?}", e);
132
140
  if let Some(err_value) = e.value() {
@@ -134,6 +142,21 @@ impl ServerParams {
134
142
  }
135
143
  })?
136
144
  .map(|mw| mw.into());
145
+ let error_lines = result_pair.entry::<Option<RArray>>(1).inspect_err(|e| {
146
+ eprintln!("Error loading middleware: {:?}", e);
147
+ if let Some(err_value) = e.value() {
148
+ print_rb_backtrace(err_value);
149
+ }
150
+ })?;
151
+ if error_lines.is_some_and(|r| !r.is_empty()) {
152
+ let errors: Vec<String> =
153
+ Vec::<String>::try_convert(error_lines.unwrap().as_value())?;
154
+ ItsiServerConfig::print_config_errors(errors);
155
+ return Err(magnus::Error::new(
156
+ magnus::exception::runtime_error(),
157
+ "Failed to set middleware",
158
+ ));
159
+ }
137
160
  let middleware = MiddlewareSet::new(routes_raw)?;
138
161
  self.middleware.set(middleware).map_err(|_| {
139
162
  magnus::Error::new(
@@ -2,7 +2,7 @@
2
2
  type: docs
3
3
  ---
4
4
  # Itsi
5
- <img src="itsi-server-100.png" alt="asd" width="80px" style="display: block; margin-left: auto; margin-right: auto;">
5
+ <img src="itsi-server-100.png" alt="image itsi" width="80px" style="display: block; margin-left: auto; margin-right: auto;">
6
6
 
7
7
  > The Serious Web Server, for Serious People
8
8
 
@@ -4,7 +4,7 @@ type: docs
4
4
  sidebar:
5
5
  exclude: true
6
6
  ---
7
- <img src="../itsi-server-100.png" alt="asd" width="80px" style="display: block; margin-left: auto; margin-right: auto;">
7
+ <img src="../itsi-server-100.png" alt="image itsi" width="80px" style="display: block; margin-left: auto; margin-right: auto;">
8
8
 
9
9
  * GitHub: [@wouterken](https://github.com/wouterken/)
10
10
  * Email: [wc@pico.net.nz](mailto:wc@pico.net.nz)
Binary file
Binary file
@@ -15,7 +15,7 @@ inside your editor. It also gives you easy-to-use auto-completion and snippets f
15
15
  You don't need to install the RubyLSP add-on to use Itsi, if both Itsi and RubyLSP are installed and activated in the same project, RubyLSP will automatically
16
16
  discover and load the addon.
17
17
 
18
- <img src="/ruby-lsp.png" alt="asd" width="700px" style="display: block; margin-left: auto; margin-right: auto;">
18
+ <img src="/ruby-lsp.png" alt="image itsi" width="700px" style="display: block; margin-left: auto; margin-right: auto;">
19
19
 
20
20
  ## Live Config Reloading
21
21
  Add `auto_reload_config!` to your `Itsi.rb` configuration file and Itsi will automatically hot reload its config with every change you make.
@@ -66,7 +66,14 @@ You can optionally provide an explicit config file path using
66
66
  itsi test -C /path/to/Itsi.rb
67
67
  ```
68
68
 
69
-
69
+ Itsi will print informative error message if config validation fails. E.g.
70
+ ```bash
71
+ ─ algorithms: ─ `Enum` validation failed. Invalid ["zstd", "gzip", "deflate", "br"] value: "brotli"
72
+ --> /Users/pico/Development/itsi/sandbox/itsi_file/Itsi.rb:2
73
+ 1 | location '/br' do
74
+ 2 | compress algorithms: ['brotli'], min_size: 0, compress_streams: true, mime_types: ['all'], level: 'fastest'
75
+ | ^^^
76
+ ```
70
77
 
71
78
  ## Shell Completions
72
79
  Itsi can also help you install shell completions, which are useful if you find yourself using the `itsi` executable a lot and forgetting the commands.
@@ -11,8 +11,7 @@ Itsi has a very configurable logging system. You can configure logging use the `
11
11
  For basic logging needs, set a global log-level using the `ITSI_LOG` environment variable (to one of `trace`, `debug`, `info`, `warn`, `error`)
12
12
 
13
13
  ## Fine-grained control
14
-
15
- For fine-grained, configuration-based control read through how to use the following options and middleware:
14
+ Itsi supports fine-grained config-based control of logging behavior, which can be changed at runtime **without downtime**. To utilize these functions, read the documentation for the following options and middleware:
16
15
 
17
16
  ### Options
18
17
  * [`log_level`](/options/log_level)
@@ -8,7 +8,6 @@ next: /configuration
8
8
 
9
9
  Itsi responds to several Unix signals for process control. These signals are used to gracefully shut down, reload configuration, adjust worker pools, or emit internal lifecycle events.
10
10
 
11
-
12
11
  ---
13
12
 
14
13
  ## Signal Types
data/docs/hugo.yaml CHANGED
@@ -61,6 +61,9 @@ menu:
61
61
  - name: "Acknowledgements"
62
62
  pageRef: "/acknowledgements"
63
63
  weight: 3
64
+ - name: Contact
65
+ url: "/contact"
66
+ weight: 5
64
67
 
65
68
  params:
66
69
  navbar:
@@ -13,9 +13,9 @@ dependencies = [
13
13
 
14
14
  [[package]]
15
15
  name = "anyhow"
16
- version = "1.0.97"
16
+ version = "1.0.98"
17
17
  source = "registry+https://github.com/rust-lang/crates.io-index"
18
- checksum = "dcfed56ad506cb2c684a14971b8861fdc3baaaae314b9e5f9bb532cbe3ba7a4f"
18
+ checksum = "e16d2d3311acee920a9eb8d33b8cbc1787ce4a264e85f964c2404b969bdcd487"
19
19
 
20
20
  [[package]]
21
21
  name = "atty"
@@ -213,7 +213,7 @@ checksum = "4a5f13b858c8d314ee3e8f639011f7ccefe71f97f96e50151fb991f267928e2c"
213
213
 
214
214
  [[package]]
215
215
  name = "itsi-scheduler"
216
- version = "0.2.2"
216
+ version = "0.2.3"
217
217
  dependencies = [
218
218
  "bytes",
219
219
  "derive_more",
@@ -286,9 +286,9 @@ checksum = "830d08ce1d1d941e6b30645f1a0eb5643013d835ce3779a5fc208261dbe10f55"
286
286
 
287
287
  [[package]]
288
288
  name = "libc"
289
- version = "0.2.171"
289
+ version = "0.2.172"
290
290
  source = "registry+https://github.com/rust-lang/crates.io-index"
291
- checksum = "c19937216e9d3aa9956d9bb8dfc0b0c8beb6058fc4f7a4dc4d850edf86a237d6"
291
+ checksum = "d750af042f7ef4f724306de029d18836c26c1765a54a6a3f094cbd23a7267ffa"
292
292
 
293
293
  [[package]]
294
294
  name = "libloading"
@@ -297,7 +297,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
297
297
  checksum = "fc2f4eb4bc735547cfed7c0a4922cbd04a4655978c09b54f1f7b228750664c34"
298
298
  dependencies = [
299
299
  "cfg-if",
300
- "windows-targets",
300
+ "windows-targets 0.48.5",
301
301
  ]
302
302
 
303
303
  [[package]]
@@ -443,7 +443,7 @@ dependencies = [
443
443
  "libc",
444
444
  "redox_syscall",
445
445
  "smallvec",
446
- "windows-targets",
446
+ "windows-targets 0.52.6",
447
447
  ]
448
448
 
449
449
  [[package]]
@@ -470,9 +470,9 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
470
470
 
471
471
  [[package]]
472
472
  name = "proc-macro2"
473
- version = "1.0.94"
473
+ version = "1.0.95"
474
474
  source = "registry+https://github.com/rust-lang/crates.io-index"
475
- checksum = "a31971752e70b8b2686d7e46ec17fb38dad4051d94024c88df49b667caea9c84"
475
+ checksum = "02b3e5e68a3a1a02aad3ec490a98007cbc13c37cbe84a3cd7b8e406d76e7f778"
476
476
  dependencies = [
477
477
  "unicode-ident",
478
478
  ]
@@ -932,7 +932,22 @@ version = "0.52.0"
932
932
  source = "registry+https://github.com/rust-lang/crates.io-index"
933
933
  checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
934
934
  dependencies = [
935
- "windows-targets",
935
+ "windows-targets 0.52.6",
936
+ ]
937
+
938
+ [[package]]
939
+ name = "windows-targets"
940
+ version = "0.48.5"
941
+ source = "registry+https://github.com/rust-lang/crates.io-index"
942
+ checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
943
+ dependencies = [
944
+ "windows_aarch64_gnullvm 0.48.5",
945
+ "windows_aarch64_msvc 0.48.5",
946
+ "windows_i686_gnu 0.48.5",
947
+ "windows_i686_msvc 0.48.5",
948
+ "windows_x86_64_gnu 0.48.5",
949
+ "windows_x86_64_gnullvm 0.48.5",
950
+ "windows_x86_64_msvc 0.48.5",
936
951
  ]
937
952
 
938
953
  [[package]]
@@ -941,28 +956,46 @@ version = "0.52.6"
941
956
  source = "registry+https://github.com/rust-lang/crates.io-index"
942
957
  checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
943
958
  dependencies = [
944
- "windows_aarch64_gnullvm",
945
- "windows_aarch64_msvc",
946
- "windows_i686_gnu",
959
+ "windows_aarch64_gnullvm 0.52.6",
960
+ "windows_aarch64_msvc 0.52.6",
961
+ "windows_i686_gnu 0.52.6",
947
962
  "windows_i686_gnullvm",
948
- "windows_i686_msvc",
949
- "windows_x86_64_gnu",
950
- "windows_x86_64_gnullvm",
951
- "windows_x86_64_msvc",
963
+ "windows_i686_msvc 0.52.6",
964
+ "windows_x86_64_gnu 0.52.6",
965
+ "windows_x86_64_gnullvm 0.52.6",
966
+ "windows_x86_64_msvc 0.52.6",
952
967
  ]
953
968
 
969
+ [[package]]
970
+ name = "windows_aarch64_gnullvm"
971
+ version = "0.48.5"
972
+ source = "registry+https://github.com/rust-lang/crates.io-index"
973
+ checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
974
+
954
975
  [[package]]
955
976
  name = "windows_aarch64_gnullvm"
956
977
  version = "0.52.6"
957
978
  source = "registry+https://github.com/rust-lang/crates.io-index"
958
979
  checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
959
980
 
981
+ [[package]]
982
+ name = "windows_aarch64_msvc"
983
+ version = "0.48.5"
984
+ source = "registry+https://github.com/rust-lang/crates.io-index"
985
+ checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
986
+
960
987
  [[package]]
961
988
  name = "windows_aarch64_msvc"
962
989
  version = "0.52.6"
963
990
  source = "registry+https://github.com/rust-lang/crates.io-index"
964
991
  checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
965
992
 
993
+ [[package]]
994
+ name = "windows_i686_gnu"
995
+ version = "0.48.5"
996
+ source = "registry+https://github.com/rust-lang/crates.io-index"
997
+ checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
998
+
966
999
  [[package]]
967
1000
  name = "windows_i686_gnu"
968
1001
  version = "0.52.6"
@@ -975,24 +1008,48 @@ version = "0.52.6"
975
1008
  source = "registry+https://github.com/rust-lang/crates.io-index"
976
1009
  checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
977
1010
 
1011
+ [[package]]
1012
+ name = "windows_i686_msvc"
1013
+ version = "0.48.5"
1014
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1015
+ checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
1016
+
978
1017
  [[package]]
979
1018
  name = "windows_i686_msvc"
980
1019
  version = "0.52.6"
981
1020
  source = "registry+https://github.com/rust-lang/crates.io-index"
982
1021
  checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
983
1022
 
1023
+ [[package]]
1024
+ name = "windows_x86_64_gnu"
1025
+ version = "0.48.5"
1026
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1027
+ checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
1028
+
984
1029
  [[package]]
985
1030
  name = "windows_x86_64_gnu"
986
1031
  version = "0.52.6"
987
1032
  source = "registry+https://github.com/rust-lang/crates.io-index"
988
1033
  checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
989
1034
 
1035
+ [[package]]
1036
+ name = "windows_x86_64_gnullvm"
1037
+ version = "0.48.5"
1038
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1039
+ checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
1040
+
990
1041
  [[package]]
991
1042
  name = "windows_x86_64_gnullvm"
992
1043
  version = "0.52.6"
993
1044
  source = "registry+https://github.com/rust-lang/crates.io-index"
994
1045
  checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
995
1046
 
1047
+ [[package]]
1048
+ name = "windows_x86_64_msvc"
1049
+ version = "0.48.5"
1050
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1051
+ checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
1052
+
996
1053
  [[package]]
997
1054
  name = "windows_x86_64_msvc"
998
1055
  version = "0.52.6"
@@ -16,8 +16,8 @@ Gem::Specification.new do |spec|
16
16
  spec.required_rubygems_version = ">= 3.1.11"
17
17
 
18
18
  spec.metadata["homepage_uri"] = spec.homepage
19
- spec.metadata["source_code_uri"] = "https://github.com/wouterken/itsi/scheduler"
20
- spec.metadata["changelog_uri"] = "https://github.com/wouterken/itsi/scheduler/blob/main/CHANGELOG.md"
19
+ spec.metadata["source_code_uri"] = "https://github.com/wouterken/itsi"
20
+ spec.metadata["changelog_uri"] = "https://github.com/wouterken/itsi/blob/main/CHANGELOG.md"
21
21
 
22
22
  # Specify which files should be added to the gem when it is released.
23
23
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Itsi
4
4
  class Scheduler
5
- VERSION = "0.2.2"
5
+ VERSION = "0.2.3"
6
6
  end
7
7
  end