aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
authorMike Yu <yumike@google.com>2023-04-07 09:20:19 +0000
committerMike Yu <yumike@google.com>2023-04-21 02:45:30 +0000
commitfa78f728528602cd45e6c59812758cffae67cec7 (patch)
treefeb506ec0fba24b579c5cf6b32d62a486128e590 /Cargo.toml.orig
parent63c26520d981d0f225e38ba8c2fb1fc46466b75d (diff)
downloadquiche-fa78f728528602cd45e6c59812758cffae67cec7.tar.gz
Upgrade quiche to 0.17.1android14-dev
This change is made by the following steps: $ rm patches/Initial-stateless-reset-detection.patch patches/Android.bp.patch $ ../../../../tools/external_updater/updater.sh update rust/crates/quiche $ (add a new Android.bp.patch in patches/) $ cargo2android.py --config cargo2android.json $ rm -rf cargo.out target.tmp/ Bug: 277315978 Ignore-AOSP-First: Can't merge the quiche-0.17.1 upgrade in AOSP first because the code change in external/rust/crates/quiche doesn't automerge into udc-mainline-prod (the code change in packages/modules/DnsResolver does). Will cherry-pick the change to AOSP after this change mergers into master. Test: cd external/rust/crates/quiche && atest Test: cd packages/modules/DnsResolver && atest Change-Id: I87acbb95e943eb41e89c56acf470cf6de6254dbe (cherry picked from commit 794f6f0480f0e5b71486e48c776bfb9b8bc77998)
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig11
1 files changed, 7 insertions, 4 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
index b217d2a..0eb2417 100644
--- a/Cargo.toml.orig
+++ b/Cargo.toml.orig
@@ -1,6 +1,6 @@
[package]
name = "quiche"
-version = "0.14.0"
+version = "0.17.1"
authors = ["Alessandro Ghedini <alessandro@ghedini.me>"]
edition = "2018"
build = "src/build.rs"
@@ -10,6 +10,7 @@ readme = "README.md"
keywords = ["quic", "http3"]
categories = ["network-programming"]
license = "BSD-2-Clause"
+rust-version = "1.66"
include = [
"/*.md",
"/*.toml",
@@ -57,15 +58,17 @@ log = { version = "0.4", features = ["std"] }
libc = "0.2"
libm = "0.2"
ring = "0.16"
+slab = "0.4"
lazy_static = "1"
-octets = { version = "0.1", path = "../octets" }
+octets = { version = "0.2", path = "../octets" }
boring = { version = "2.0.0", optional = true }
foreign-types-shared = { version = "0.3.0", optional = true }
-qlog = { version = "0.7", path = "../qlog", optional = true }
+qlog = { version = "0.9", path = "../qlog", optional = true }
sfv = { version = "0.9", optional = true }
+smallvec = { version = "1.10", features = ["serde", "union"] }
[target."cfg(windows)".dependencies]
-winapi = { version = "0.3", features = ["wincrypt", "ws2def", "ws2ipdef"] }
+winapi = { version = "0.3", features = ["wincrypt", "ws2def", "ws2ipdef", "ws2tcpip"] }
[dev-dependencies]
mio = { version = "0.8", features = ["net", "os-poll"] }