diff --git a/Cargo.lock b/Cargo.lock index d019581..d207fd7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -942,7 +942,7 @@ dependencies = [ "proc-macro2", "quote", "regex", - "rustfmt-wrapper", + "rustfmt-wrapper 0.2.0", "schemars", "serde", "serde_json", @@ -1083,6 +1083,19 @@ dependencies = [ "toolchain_find", ] +[[package]] +name = "rustfmt-wrapper" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed729e3bee08ec2befd593c27e90ca9fdd25efdc83c94c3b82eaef16e4f7406e" +dependencies = [ + "serde", + "tempfile", + "thiserror", + "toml", + "toolchain_find", +] + [[package]] name = "rustls" version = "0.20.6" @@ -1645,7 +1658,7 @@ dependencies = [ "log", "proc-macro2", "quote", - "rustfmt-wrapper", + "rustfmt-wrapper 0.1.0", "schemars", "serde_json", "syn", diff --git a/progenitor-impl/Cargo.toml b/progenitor-impl/Cargo.toml index 62d3f35..f0d31b8 100644 --- a/progenitor-impl/Cargo.toml +++ b/progenitor-impl/Cargo.toml @@ -14,7 +14,7 @@ openapiv3 = "1.0.0" proc-macro2 = "1.0" quote = "1.0" regex = "1.5" -rustfmt-wrapper = "0.1" +rustfmt-wrapper = "0.2" schemars = { version = "0.8.10", features = ["chrono", "uuid1"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0"