bump reqwests and http and kittycad.rs (#4065)

bump reqwests

Signed-off-by: Jess Frazelle <github@jessfraz.com>
This commit is contained in:
Jess Frazelle
2024-10-01 11:05:44 -07:00
committed by GitHub
parent 2a3693651a
commit e2f5ad47a2
4 changed files with 590 additions and 477 deletions

1055
src/wasm-lib/Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -24,12 +24,11 @@ wasm-bindgen-futures = "0.4.42"
[dev-dependencies]
anyhow = "1"
hyper = { version = "0.14.29", features = ["server", "http1"] }
image = { version = "0.25.1", default-features = false, features = ["png"] }
kittycad = { workspace = true, default-features = true }
kittycad-modeling-cmds = { workspace = true }
pretty_assertions = "1.4.1"
reqwest = { version = "0.11.26", default-features = false }
reqwest = { version = "0.12", default-features = false }
tokio = { version = "1.40.0", features = ["rt-multi-thread", "macros", "time"] }
twenty-twenty = "0.8"
uuid = { version = "1.10.0", features = ["v4", "js", "serde"] }
@ -70,9 +69,8 @@ members = [
]
[workspace.dependencies]
http = "0.2.12"
kittycad = { version = "0.3.22", default-features = false, features = ["js", "requests"] }
kittycad-modeling-session = "0.1.4"
http = "1"
kittycad = { version = "0.3.23", default-features = false, features = ["js", "requests"] }
kittycad-modeling-cmds = { version = "0.2.64", features = ["websocket"] }
[[test]]

View File

@ -7,7 +7,7 @@ license = "MIT"
[dependencies]
anyhow = "1.0.89"
hyper = { version = "0.14.29", features = ["server"] }
hyper = { version = "0.14.29", features = ["http1", "server", "tcp"] }
kcl-lib = { version = "0.2", path = "../kcl" }
pico-args = "0.5.0"
serde = { version = "1.0.210", features = ["derive"] }

View File

@ -35,7 +35,7 @@ measurements = "0.11.0"
mime_guess = "2.0.5"
parse-display = "0.9.1"
pyo3 = { version = "0.22.3", optional = true }
reqwest = { version = "0.11.26", default-features = false, features = ["stream", "rustls-tls"] }
reqwest = { version = "0.12", default-features = false, features = ["stream", "rustls-tls"] }
ropey = "1.6.1"
schemars = { version = "0.8.17", features = ["impl_json_schema", "url", "uuid1", "preserve_order"] }
serde = { version = "1.0.210", features = ["derive"] }