path_info: check for and resolve symlink

This commit is contained in:
cy 2025-05-04 01:48:13 -04:00
parent 0e97d11745
commit 14d6e9d29e
3 changed files with 33 additions and 4 deletions

View file

@ -16,15 +16,14 @@ futures = "0.3.31"
nix-compat = { git = "https://github.com/tvlfyi/tvix.git", version = "0.1.0" }
regex = "1.11.1"
reqwest = "0.12.15"
serde = { version = "1.0.219", features = [ "derive" ]}
serde = { version = "1.0.219", features = ["derive"] }
serde_json = "1.0.140"
sha2 = "0.10.8"
tokio = { version = "1.44.1", features = [ "full", "tracing", "parking_lot" ]}
tokio = { version = "1.44.1", features = ["full", "tracing", "parking_lot"] }
tracing = "0.1.41"
url = { version = "2.5.4", features = [ "serde" ]}
url = { version = "2.5.4", features = ["serde"] }
cxx = "1.0"
console-subscriber = "0.4.1"
tempfile = "3.19.1"
tokio-util = { version = "0.7.15", features = ["io"] }
bytes = "1.10.1"
object_store = { version = "0.12.0", features = ["aws"] }
@ -35,3 +34,6 @@ humansize = "2.1.3"
[build-dependencies]
cxx-build = "1.0"
pkg-config = "0.3.32"
[dev-dependencies]
tempfile = "3.19.1"