Skip to content

Commit

Permalink
Merge pull request #7 from fibonacci1729/bump-hyperium
Browse files Browse the repository at this point in the history
Bump hyperium / http to 1.0.0
  • Loading branch information
fibonacci1729 authored Feb 22, 2024
2 parents 3af3d72 + 6c4c535 commit fc2678b
Show file tree
Hide file tree
Showing 10 changed files with 29 additions and 32 deletions.
41 changes: 20 additions & 21 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ routefinder = "0.5.3"
once_cell = "1.18.0"
futures = "0.3.28"
bytes = "1"
hyperium = { package = "http", version = "0.2" }
hyperium = { package = "http", version = "1.0.0" }
serde_json = { version = "1.0.96", optional = true }
serde = { version = "1.0.163", optional = true }

Expand Down
5 changes: 2 additions & 3 deletions examples/Cargo.lock

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

2 changes: 1 addition & 1 deletion examples/http-rust-outbound-http/http-hello/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
# Useful crate to handle errors.
anyhow = "1"
# General-purpose crate with common HTTP types.
http = "0.2"
http = "1.0.0"
# The Spin SDK.
spin-sdk = { path = "../../.." }

2 changes: 1 addition & 1 deletion examples/http-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ crate-type = ["cdylib"]

[dependencies]
anyhow = "1"
http = "0.2.9"
http = "1.0.0"
serde = { version = "1.0", features = ["derive"] }
spin-sdk = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/json-http-rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ crate-type = ["cdylib"]

[dependencies]
anyhow = "1"
http = "0.2.9"
http = "1.0.0"
serde = { version = "1.0", features = ["derive"] }
spin-sdk = { path = "../.." }
2 changes: 1 addition & 1 deletion examples/rust-key-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ crate-type = ["cdylib"]

[dependencies]
anyhow = "1"
http = "0.2"
http = "1.0.0"
spin-sdk = { path = "../.." }

2 changes: 1 addition & 1 deletion examples/rust-outbound-mysql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["cdylib"]
# Useful crate to handle errors.
anyhow = "1"
# General-purpose crate with common HTTP types.
http = "0.2"
http = "1.0.0"
serde = "1.0.144"
serde_json = "1.0.85"
# The Spin SDK.
Expand Down
2 changes: 1 addition & 1 deletion examples/rust-outbound-pg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ crate-type = ["cdylib"]
# Useful crate to handle errors.
anyhow = "1"
# General-purpose crate with common HTTP types.
http = "0.2"
http = "1.0.0"
# The Spin SDK.
spin-sdk = { path = "../.." }

1 change: 0 additions & 1 deletion macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ proc-macro = true
[dependencies]
anyhow = "1"
bytes = "1"
http = "0.2"
proc-macro2 = "1"
quote = "1.0"
syn = { version = "1.0", features = [ "full" ]}

0 comments on commit fc2678b

Please sign in to comment.