-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #62 from martinthomson/ci-msrv
Continuous integration updates
- Loading branch information
Showing
13 changed files
with
82 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
msrv = "1.52.0" | ||
msrv = "1.63.0" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "bhttp" | |
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63.0" | ||
license = "MIT OR Apache-2.0" | ||
description = "Binary HTTP messages (draft-ietf-httpbis-binary-message)" | ||
repository = "https://github.com/martinthomson/ohttp" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,35 +3,42 @@ name = "ohttp" | |
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63.0" | ||
build = "build.rs" | ||
license = "MIT OR Apache-2.0" | ||
description = "Oblivious HTTP" | ||
repository = "https://github.com/martinthomson/ohttp" | ||
|
||
[features] | ||
default = ["client", "server", "rust-hpke"] | ||
app-svc = ["nss"] | ||
client = [] | ||
server = [] | ||
nss = ["bindgen"] | ||
external-sqlite = [] | ||
gecko = ["nss", "mozbuild"] | ||
nss = ["bindgen", "regex-mess"] | ||
pq = ["hpke-pq"] | ||
regex-mess = ["regex", "regex-automata", "regex-syntax"] | ||
rust-hpke = ["rand", "aead", "aes-gcm", "chacha20poly1305", "hkdf", "sha2", "hpke"] | ||
gecko = ["nss", "mozbuild"] | ||
app-svc = ["nss"] | ||
external-sqlite = [] | ||
server = [] | ||
|
||
[dependencies] | ||
aead = {version = "0.4", optional = true, features = ["std"]} | ||
aes-gcm = {version = "0.9", optional = true} | ||
byteorder = "1.3" | ||
byteorder = "1.4" | ||
chacha20poly1305 = {version = "0.8", optional = true} | ||
hex = "0.4" | ||
hkdf = {version = "0.11", optional = true} | ||
hpke = {version = "0.10.0", optional = true, default-features = false, features = ["std", "x25519"]} | ||
lazy_static = "1.4" | ||
log = {version = "0.4.0", default-features = false} | ||
log = {version = "0.4", default-features = false} | ||
rand = {version = "0.8", optional = true} | ||
# bindgen uses regex and friends, which have been updated past our MSRV | ||
# however, the cargo resolver happily resolves versions that it can't compile | ||
regex = {version = "~1.9", optional = true} | ||
regex-automata = {version = "~0.3", optional = true} | ||
regex-syntax = {version = "~0.7", optional = true} | ||
sha2 = {version = "0.9", optional = true} | ||
thiserror = "1" | ||
hpke = {version = "0.10.0", optional = true, default-features = false, features = ["std", "x25519"]} | ||
|
||
[dependencies.hpke-pq] | ||
package = "hpke_pq" | ||
|
@@ -50,10 +57,10 @@ serde_derive = "1.0" | |
toml = "0.5" | ||
|
||
[build-dependencies.bindgen] | ||
version = "0.64" | ||
version = "0.69" | ||
default-features = false | ||
optional = true | ||
features = ["runtime"] | ||
|
||
[dev-dependencies] | ||
env_logger = {version = "0.9", default-features = false} | ||
env_logger = {version = "0.10", default-features = false} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters