-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27169f3
commit 978dcfb
Showing
8 changed files
with
27 additions
and
50 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,11 +8,3 @@ members = [ | |
"ohttp-client-cli", | ||
"ohttp-server", | ||
] | ||
|
||
[workspace.package] | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63.0" | ||
license = "MIT OR Apache-2.0" | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,8 @@ | ||
[package] | ||
name = "bhttp-convert" | ||
description = "Tool for converting HTTP messages to/from Binary HTTP" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
|
||
[dependencies] | ||
structopt = "0.3" | ||
|
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,12 +1,12 @@ | ||
[package] | ||
name = "bhttp" | ||
description = "Binary HTTP messages (RFC 9292)" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
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" | ||
|
||
[features] | ||
default = ["bhttp"] | ||
|
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,12 +1,8 @@ | ||
[package] | ||
name = "ohttp-client-cli" | ||
description = "Low-level command-line client for testing OHTTP" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
|
||
[features] | ||
default = ["rust-hpke"] | ||
|
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,12 +1,8 @@ | ||
[package] | ||
name = "ohttp-client" | ||
description = "Test OHTTP client" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
|
||
[features] | ||
default = ["rust-hpke"] | ||
|
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,12 +1,8 @@ | ||
[package] | ||
name = "ohttp-server" | ||
description = "Simple test OHTTP server" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
|
||
[features] | ||
default = ["rust-hpke"] | ||
|
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,13 +1,13 @@ | ||
[package] | ||
name = "ohttp" | ||
description = "Oblivious HTTP (RFC 9458)" | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.63.0" | ||
build = "build.rs" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
license = "MIT OR Apache-2.0" | ||
description = "Oblivious HTTP" | ||
repository = "https://github.com/martinthomson/ohttp" | ||
|
||
[features] | ||
default = ["client", "server", "rust-hpke"] | ||
|