Skip to content

Commit

Permalink
feat: Patch deno libraries to use reqwest 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
bakjos committed Apr 4, 2024
1 parent 88879fa commit 124b1bb
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 41 deletions.
48 changes: 15 additions & 33 deletions Cargo.lock

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

12 changes: 7 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -309,11 +309,13 @@ etcd-client = { git = "https://github.com/risingwavelabs/etcd-client.git", rev =
reqsign = { git = "https://github.com/wcy-fdu/reqsign.git", rev = "e6cb304" }
# patch to remove preserve_order from serde_json
deno_core = { git = "https://github.com/bakjos/deno_core", rev = "9b241c6" }
deno_fetch = { git = "https://github.com/bakjos/deno", rev = "73f8e8e" }
deno_http = { git = "https://github.com/bakjos/deno", rev = "73f8e8e" }
deno_tls = { git = "https://github.com/bakjos/deno", rev = "73f8e8e" }
deno_web = { git = "https://github.com/bakjos/deno", rev = "73f8e8e" }
deno_websocket = { git = "https://github.com/bakjos/deno", rev = "73f8e8e" }
# patch to user reqwest 0.12.2
deno_fetch = { git = "https://github.com/bakjos/deno", rev = "787a232" }
deno_http = { git = "https://github.com/bakjos/deno", rev = "787a232" }
deno_net = { git = "https://github.com/bakjos/deno", rev = "787a232" }
deno_tls = { git = "https://github.com/bakjos/deno", rev = "787a232" }
deno_web = { git = "https://github.com/bakjos/deno", rev = "787a232" }
deno_websocket = { git = "https://github.com/bakjos/deno", rev = "787a232" }

[workspace.metadata.dylint]
libraries = [{ path = "./lints" }]
7 changes: 4 additions & 3 deletions src/workspace-hack/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,8 @@ ring-986da7b5efc2b80e = { package = "ring", version = "0.16", features = ["std"]
rsa = { version = "0.9", features = ["hazmat"] }
rust_decimal = { version = "1", features = ["db-postgres", "maths"] }
rustc-hash = { version = "1" }
rustls = { version = "0.21", features = ["dangerous_configuration"] }
rustls = { version = "0.22" }
rustls-webpki = { version = "0.102" }
scopeguard = { version = "1" }
sea-orm = { version = "0.12", features = ["runtime-tokio-native-tls", "sqlx-mysql", "sqlx-postgres", "sqlx-sqlite"] }
sea-query = { version = "0.30", default-features = false, features = ["backend-mysql", "backend-postgres", "backend-sqlite", "derive", "hashable-value", "postgres-array", "thread-safe", "with-bigdecimal", "with-chrono", "with-json", "with-rust_decimal", "with-time", "with-uuid"] }
Expand Down Expand Up @@ -242,10 +243,10 @@ regex-automata = { version = "0.4", default-features = false, features = ["dfa",
regex-syntax = { version = "0.8" }
reqwest-5ef9efb8ec2df382 = { package = "reqwest", version = "0.12", features = ["blocking", "brotli", "gzip", "json", "rustls-tls", "socks", "stream"] }
ring-9067fe90e8c1f593 = { package = "ring", version = "0.17", features = ["std"] }
ring-986da7b5efc2b80e = { package = "ring", version = "0.16", features = ["std"] }
rsa = { version = "0.9", features = ["hazmat"] }
rustc-hash = { version = "1" }
rustls = { version = "0.21", features = ["dangerous_configuration"] }
rustls = { version = "0.22" }
rustls-webpki = { version = "0.102" }
scopeguard = { version = "1" }
serde = { version = "1", features = ["alloc", "derive", "rc"] }
serde_json = { version = "1", features = ["alloc", "raw_value"] }
Expand Down

0 comments on commit 124b1bb

Please sign in to comment.