Skip to content

Commit ebb3b98

Browse files
committed
update deps, clean up new warnings
1 parent e646165 commit ebb3b98

File tree

9 files changed

+208
-203
lines changed

9 files changed

+208
-203
lines changed

Cargo.lock

Lines changed: 200 additions & 202 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ rust-toolchain-file = "0.1"
6161
rusty_ulid = "1"
6262
schemars = { version = "0.8", features = [ "chrono" ] }
6363
sea-query = { version = "0.30", default-features = false, features = [ "derive", "attr", "backend-sqlite" ] }
64-
sea-query-rusqlite = "0.4"
64+
sea-query-rusqlite = "0.5"
6565
serde = { version = "1", features = [ "derive" ] }
6666
serde_json = "1"
6767
serde_repr = "0.1"

factory/propolis/src/net.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,7 @@ fn mac_sanitise(input: &str) -> String {
8888
}
8989

9090
pub struct Vnic {
91+
#[allow(unused)]
9192
pub name: String,
9293
pub physical: String,
9394
pub mac: String,

factory/propolis/src/serial.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ use tokio::net::UnixListener;
1919
use tokio::{io::Interest, net::UnixStream};
2020

2121
#[derive(Debug)]
22+
#[allow(unused)]
2223
pub enum SerialData {
2324
Line(String),
2425
}

github/ghtool/src/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ use serde::Deserialize;
1313
#[derive(Deserialize)]
1414
pub struct Config {
1515
pub id: u64,
16+
#[allow(unused)]
1617
pub secret: String,
1718
}
1819

github/server/src/config.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ pub struct Buildomat {
2525
#[derive(Deserialize)]
2626
pub struct Config {
2727
pub id: u64,
28+
#[allow(unused)]
2829
pub secret: String,
2930
pub webhook_secret: String,
3031
pub base_url: String,

server/src/db/tables/job.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use super::sublude::*;
66

77
#[derive(Clone, Debug)]
88
#[enum_def(prefix = "", suffix = "Def")]
9+
#[allow(unused)]
910
pub struct Job {
1011
pub id: JobId,
1112
pub owner: UserId,

server/src/db/tables/job_tag.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ use super::sublude::*;
66

77
#[derive(Debug, Clone)]
88
#[enum_def(prefix = "", suffix = "Def")]
9+
#[allow(unused)]
910
pub struct JobTag {
1011
pub job: JobId,
1112
pub name: String,

server/src/jobs.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const LEASE_LENGTH: Duration = Duration::from_secs(60);
2121

2222
#[derive(Clone)]
2323
pub struct Lease {
24+
#[allow(unused)]
2425
pub job: JobId,
2526
pub factory: FactoryId,
2627
pub expiry: Instant,

0 commit comments

Comments
 (0)