diff options
Diffstat (limited to 'tvix/Cargo.lock')
-rw-r--r-- | tvix/Cargo.lock | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index b1e6c7d70637..297adf5c846a 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -139,6 +139,16 @@ dependencies = [ ] [[package]] +name = "async-tempfile" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b37d4bb113c47e4f263d4b0221912ff5aa840a51bc9b7b47b024e1cf1926fd9b" +dependencies = [ + "tokio", + "uuid", +] + +[[package]] name = "async-trait" version = "0.1.68" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3093,6 +3103,7 @@ name = "tvix-castore" version = "0.1.0" dependencies = [ "async-stream", + "async-tempfile", "blake3", "bstr", "bytes", @@ -3335,6 +3346,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a" [[package]] +name = "uuid" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88ad59a7560b41a70d191093a945f0b87bc1deeda46fb237479708a1d6b6cdfc" +dependencies = [ + "getrandom", +] + +[[package]] name = "valuable" version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" |