Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ext/cache): support lscache #27628

Merged
merged 28 commits into from
Jan 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
88903e1
feat(ext/cache): support lscache
bartlomieju Jan 10, 2025
c144f7b
map more errors
bartlomieju Jan 10, 2025
0df9a78
Merge branch 'main' into lsc_cache
bartlomieju Jan 14, 2025
1415c99
lints now
bartlomieju Jan 14, 2025
f7f8274
Merge branch 'main' into lsc_cache
bartlomieju Jan 16, 2025
9b119bc
wip
bartlomieju Jan 16, 2025
d62e31a
Merge branch 'main' into lsc_cache
bartlomieju Jan 17, 2025
cb1cfb8
need to add a flag
bartlomieju Jan 17, 2025
3d41fea
wire up a flag
bartlomieju Jan 17, 2025
6cda8b7
fix flag
bartlomieju Jan 17, 2025
b1eaefb
Merge branch 'main' into lsc_cache
bartlomieju Jan 17, 2025
3ae9f0c
fix(ext/node): tls.connect regression (#27707)
kt3k Jan 17, 2025
6aec361
refactor: update deno_core and use more concrete errors (#27620)
crowlKats Jan 17, 2025
2ab5d9a
refactor: move denort to separate crate (#27688)
dsherret Jan 17, 2025
2a9d6fe
Merge branch 'main' into lsc_cache
bartlomieju Jan 17, 2025
289a7e0
fix
bartlomieju Jan 17, 2025
2798990
Merge branch 'main' into lsc_cache
bartlomieju Jan 20, 2025
e1c707e
Merge branch 'main' into lsc_cache
bartlomieju Jan 20, 2025
18ded44
use env var
bartlomieju Jan 20, 2025
b27da42
move from reqwest to hyper
bartlomieju Jan 21, 2025
fbb7ec5
doesn't compile yet
bartlomieju Jan 21, 2025
9f130ee
wip
bartlomieju Jan 22, 2025
cef0ba1
pos
bartlomieju Jan 22, 2025
352e423
Merge branch 'main' into lsc_cache
bartlomieju Jan 27, 2025
a340fba
try
bartlomieju Jan 27, 2025
b352b51
compiles now
bartlomieju Jan 27, 2025
4979e22
Merge branch 'main' into lsc_cache
bartlomieju Jan 28, 2025
0cfd5ad
log response on error
bartlomieju Jan 28, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,7 @@ node_resolver = { version = "0.25.0", path = "./resolvers/node" }
aes = "=0.8.3"
anyhow = "1.0.57"
async-once-cell = "0.5.4"
async-stream = "0.3"
async-trait = "0.1.73"
base32 = "=0.5.1"
base64 = "0.21.7"
Expand Down
14 changes: 14 additions & 0 deletions ext/cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,25 @@ description = "Implementation of Cache API for Deno"
path = "lib.rs"

[dependencies]
anyhow.workspace = true
async-stream.workspace = true
async-trait.workspace = true
base64.workspace = true
bytes.workspace = true
chrono.workspace = true
deno_core.workspace = true
deno_error.workspace = true
futures.workspace = true
http.workspace = true
http-body.workspace = true
http-body-util.workspace = true
hyper.workspace = true
hyper-util.workspace = true
log.workspace = true
rusqlite.workspace = true
serde.workspace = true
sha2.workspace = true
slab.workspace = true
thiserror.workspace = true
tokio.workspace = true
tokio-util.workspace = true
Loading