diff --git a/Cargo.lock b/Cargo.lock index a6310aa6..ff5bdf53 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1507,9 +1507,9 @@ dependencies = [ [[package]] name = "dropshot-api-manager" -version = "0.2.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "aee20ca777e652264a3334e41c9b548bdd848562e3918541ab04d6ceb3b7dd56" +checksum = "f45b53c5eab26bfb0246e53c6c586558331c6e4efa3dc29ff9fb0373a6c3d87a" dependencies = [ "anyhow", "atomicwrites", @@ -1537,9 +1537,9 @@ dependencies = [ [[package]] name = "dropshot-api-manager-types" -version = "0.2.4" +version = "0.3.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0103ef0b1a219c1a620e0b01659f6a27185df697876388144b1fb9637123e63" +checksum = "b78a68bd7f0470aec18807e53b0f975661453dae80995c03bbb370d9d0c6eb6f" dependencies = [ "anyhow", "camino", diff --git a/Cargo.toml b/Cargo.toml index 61679d87..d76b38ca 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,8 +63,8 @@ serde = { version = "1.0.228", features = ["derive"] } hostname = "0.3" thiserror = "1.0" dropshot = { version = "0.16.6", features = [ "usdt-probes" ] } -dropshot-api-manager = "0.2.4" -dropshot-api-manager-types = "0.2.4" +dropshot-api-manager = "0.3.0" +dropshot-api-manager-types = "0.3.0" schemars = { version = "0.8", features = [ "uuid1", "chrono" ] } tokio = { version = "1.37", features = ["full"] } serde_repr = "0.1" diff --git a/dropshot-apis/src/main.rs b/dropshot-apis/src/main.rs index 1ce46952..47d74239 100644 --- a/dropshot-apis/src/main.rs +++ b/dropshot-apis/src/main.rs @@ -44,7 +44,6 @@ pub fn all_apis() -> anyhow::Result { ..Default::default() }, api_description: ddm_admin_api_mod::stub_api_description, - extra_validation: None, }, ManagedApiConfig { ident: "mg-admin", @@ -58,7 +57,6 @@ pub fn all_apis() -> anyhow::Result { ..Default::default() }, api_description: mg_admin_api_mod::stub_api_description, - extra_validation: None, }, ];