Skip to content

Commit

Permalink
feat: Implement QUIC
Browse files Browse the repository at this point in the history
  • Loading branch information
devsnek committed Jul 10, 2024
1 parent c461f8f commit 4fe503b
Show file tree
Hide file tree
Showing 12 changed files with 1,440 additions and 23 deletions.
81 changes: 66 additions & 15 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,12 +146,12 @@ prost = "0.11"
prost-build = "0.11"
rand = "=0.8.5"
regex = "^1.7.0"
reqwest = { version = "=0.12.4", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json", "http2"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955
reqwest = { version = "=0.12.5", default-features = false, features = ["rustls-tls", "stream", "gzip", "brotli", "socks", "json", "http2"] } # pinned because of https://github.com/seanmonstar/reqwest/pull/1955
ring = "^0.17.0"
rusqlite = { version = "=0.29.0", features = ["unlock_notify", "bundled"] }
rustls = "0.22.4"
rustls = { version = "0.23.11", default-features = false, features = ["logging", "std", "tls12", "ring"] }
rustls-pemfile = "2"
rustls-tokio-stream = "=0.2.23"
rustls-tokio-stream = { git = "https://github.com/denoland/rustls-tokio-stream.git", rev = "8237025" }
rustls-webpki = "0.102"
rustyline = "=13.0.0"
saffron = "=0.1.0"
Expand Down
7 changes: 7 additions & 0 deletions cli/tsc/99_main_compiler.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,13 @@ delete Object.prototype.__proto__;
"listenDatagram",
"openKv",
"umask",
"connectQuic",
"listenQuic",
"QuicBidirectionalStream",
"QuicConn",
"QuicListener",
"QuicReceiveStream",
"QuicSendStream",
]);
const unstableMsgSuggestion =
"If not, try changing the 'lib' compiler option to include 'deno.unstable' " +
Expand Down
Loading

0 comments on commit 4fe503b

Please sign in to comment.