diff --git a/backend/Cargo.lock b/backend/Cargo.lock index 7f70450552..7d7f057f9e 100644 --- a/backend/Cargo.lock +++ b/backend/Cargo.lock @@ -3323,8 +3323,9 @@ dependencies = [ [[package]] name = "gosyn" -version = "0.2.5" -source = "git+https://github.com/gbouv/gosyn.git?branch=gbouv/parser-from-no-panic#3c18a4b8657463e579f283dbce21abec58b0cc0e" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "099e29e0cf77a5b706f9e05e425cfeeed0debb2ee6c74c2c86bd9b17178bf8e0" dependencies = [ "anyhow", "strum", @@ -10055,18 +10056,18 @@ dependencies = [ [[package]] name = "zerocopy" -version = "0.7.26" +version = "0.7.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e97e415490559a91254a2979b4829267a57d2fcd741a98eee8b722fb57289aa0" +checksum = "f43de342578a3a14a9314a2dab1942cbfcbe5686e1f91acdc513058063eafe18" dependencies = [ "zerocopy-derive", ] [[package]] name = "zerocopy-derive" -version = "0.7.26" +version = "0.7.27" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd7e48ccf166952882ca8bd778a43502c64f33bf94c12ebe2a7f08e5a0f6689f" +checksum = "e1012d89e3acb79fad7a799ce96866cfb8098b74638465ea1b1533d35900ca90" dependencies = [ "proc-macro2", "quote", diff --git a/backend/Cargo.toml b/backend/Cargo.toml index b30178da53..68958ed738 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -181,7 +181,7 @@ async-stripe = { version = "0.25.2", features = [ async_zip = { version = "0.0.11", features = ["full"] } once_cell = "1.17.1" rsmq_async = { version = "5.1.5" } -gosyn = "0.2.2" +gosyn = "0.2.6" bytes = "1.4.0" gethostname = "0.4.3" wasm-bindgen = "0.2" @@ -206,6 +206,3 @@ candle-core = "0.3.0" candle-transformers = "0.3.0" candle-nn = "0.3.0" tiberius = { version = "0.12.2", default-features = false, features = ["rustls", "tds73", "chrono"] } - -[patch.crates-io] -gosyn = { git = 'https://github.com/gbouv/gosyn.git', branch = 'gbouv/parser-from-no-panic' }