diff options
| -rw-r--r-- | Cargo.lock | 25 | ||||
| -rw-r--r-- | log_db/Cargo.toml | 1 |
2 files changed, 24 insertions, 2 deletions
@@ -518,6 +518,7 @@ dependencies = [ "rand", "serial_test", "tempfile", + "thiserror", "uuid", ] @@ -946,9 +947,9 @@ checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67" [[package]] name = "syn" -version = "2.0.79" +version = "2.0.87" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "89132cd0bf050864e1d38dc3bbc07a0eb8e7530af26344d3d2bbbef83499f590" +checksum = "25aa4ce346d03a6dcd68dd8b4010bcb74e54e62c90c573f394c46eae99aba32d" dependencies = [ "proc-macro2", "quote", @@ -975,6 +976,26 @@ dependencies = [ ] [[package]] +name = "thiserror" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07c1e40dd48a282ae8edc36c732cbc219144b87fb6a4c7316d611c6b1f06ec0c" +dependencies = [ + "thiserror-impl", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874aa7e446f1da8d9c3a5c95b1c5eb41d800045252121dc7f8e0ba370cee55f5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] name = "tinytemplate" version = "1.2.1" source = "registry+https://github.com/rust-lang/crates.io-index" diff --git a/log_db/Cargo.toml b/log_db/Cargo.toml index 723d29d..c2ff601 100644 --- a/log_db/Cargo.toml +++ b/log_db/Cargo.toml @@ -11,6 +11,7 @@ fs2 = "0.4.3" log = "0.4.22" priority-queue = "2.1.1" tempfile = "3.13.0" +thiserror = "2.0.1" uuid = { version = "1.11.0", features = ["v4"] } [dev-dependencies] |
