Maximiliano Sandoval
|
5586eeaba8
|
rrd_map: remove unneded return statement
Fixes:
warning: unneeded `return` statement
--> proxmox-rrd/src/cache/rrd_map.rs:117:13
|
117 | return Ok(true);
| ^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
= note: `#[warn(clippy::needless_return)]` on by default
help: remove `return`
|
117 - return Ok(true);
117 + Ok(true)
|
warning: unneeded `return` statement
--> proxmox-rrd/src/cache/rrd_map.rs:119:13
|
119 | return Ok(false);
| ^^^^^^^^^^^^^^^^
|
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#needless_return
help: remove `return`
|
119 - return Ok(false);
119 + Ok(false)
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-28 13:09:15 +02:00 |
|
Wolfgang Bumiller
|
2da3121492
|
sys: crypt: style + drop unnecessary length check
These are statically sized arrays, not slices, they cannot be empty.
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-28 13:04:43 +02:00 |
|
Wolfgang Bumiller
|
3129752da9
|
router: bump to 2.2.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 12:02:13 +02:00 |
|
Wolfgang Bumiller
|
c1a947c998
|
openid: bump to 0.10.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 12:00:58 +02:00 |
|
Wolfgang Bumiller
|
9ae3df424e
|
product-config: bump to 0.2.2-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 12:00:02 +02:00 |
|
Wolfgang Bumiller
|
5544c17ede
|
log: bump to 0.2.2-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:52:03 +02:00 |
|
Wolfgang Bumiller
|
ca04e129e4
|
client: bump to 0.4.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:51:22 +02:00 |
|
Wolfgang Bumiller
|
11e6173097
|
apt: bump to 0.11.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:48:32 +02:00 |
|
Wolfgang Bumiller
|
256bcfb0f1
|
rrd: bump to 0.3.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:47:35 +02:00 |
|
Wolfgang Bumiller
|
c1709d994e
|
simple-config: bump to 0.1.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:44:26 +02:00 |
|
Wolfgang Bumiller
|
fc7a4be4eb
|
uuid: bump to 1.0.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:43:11 +02:00 |
|
Wolfgang Bumiller
|
2c1d5fd741
|
daemon: bump to 0.1.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:42:00 +02:00 |
|
Maximiliano Sandoval
|
af9aa40d8b
|
router: remove unused deps
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
89df077104
|
openid: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
c33cc9e350
|
product-config: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
d44ceba86d
|
log: remove unused log dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
5e2179cf0a
|
client: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
b01230f70c
|
apt: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
9031fc88e1
|
rrd: remove unused libc dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
b6c6834d1f
|
simple-config: remove unused log dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
c594d847b5
|
uuid: remove unused libc dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Maximiliano Sandoval
|
709c237ebc
|
daemon: Remove unused once_cell dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:38:48 +02:00 |
|
Wolfgang Bumiller
|
f36d0e5137
|
dns-api: bump to 0.1.4-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:38:45 +02:00 |
|
Maximiliano Sandoval
|
58e2fa5983
|
dns-api: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:36:49 +02:00 |
|
Wolfgang Bumiller
|
f94dc5b0a3
|
acme-api: bump to 0.1.5-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:36:32 +02:00 |
|
Maximiliano Sandoval
|
358bb76960
|
acme-api: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:35:45 +02:00 |
|
Wolfgang Bumiller
|
c319c5925d
|
auth-api: bump to 0.4.5
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:35:15 +02:00 |
|
Wolfgang Bumiller
|
bdb28cc8bf
|
network-api: bump to 0.1.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:34:36 +02:00 |
|
Wolfgang Bumiller
|
693d206c94
|
rest-server: bump to 0.7.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:34:15 +02:00 |
|
Maximiliano Sandoval
|
21a39b3cda
|
rest-server: remove use of once_cell
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:32:23 +02:00 |
|
Maximiliano Sandoval
|
901f2fb1bb
|
rest-server: remove unused dependencies
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:32:23 +02:00 |
|
Wolfgang Bumiller
|
294a551e0e
|
subscription: bump to 0.4.6-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:32:23 +02:00 |
|
Wolfgang Bumiller
|
3e8fa8b81c
|
sys: bump to 0.6.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:32:20 +02:00 |
|
Maximiliano Sandoval
|
a86deb2783
|
sys: remove unused base64 dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 11:28:10 +02:00 |
|
Wolfgang Bumiller
|
a88be21074
|
time: bump to 2.0.1-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:08:23 +02:00 |
|
Wolfgang Bumiller
|
3fabb14d62
|
schema: bump to 3.1.3-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:06:44 +02:00 |
|
Wolfgang Bumiller
|
122f88d273
|
async: bump to 0.4.3
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-14 11:06:22 +02:00 |
|
Maximiliano Sandoval
|
b5f806797f
|
cargo: remove lazy_static dependency on workspace
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
ab3f4a2fc4
|
schema: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
9530b75286
|
acme-api: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
0b19e344d7
|
auth-api: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
dde994ab57
|
network-api: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
8d5e864bf1
|
sys: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
669c39c59f
|
time: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
25f83bce19
|
rest-server: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
692231d2a4
|
subscription: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
6c0f6890e4
|
async: remove lazy_static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
9693ceca7a
|
dns-api: remove lazy-static dependency
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Maximiliano Sandoval
|
9f9f736cfc
|
cargo: set msrv to 1.80
In the following commits we make use of std::sync::LazyLock;
Signed-off-by: Maximiliano Sandoval <m.sandoval@proxmox.com>
|
2024-08-14 10:33:42 +02:00 |
|
Wolfgang Bumiller
|
cb509a1e6a
|
client: bump to 0.4.0-1
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
|
2024-08-13 15:45:20 +02:00 |
|