-
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
fab4f0a
commit 418cdfc
Showing
7 changed files
with
49 additions
and
25 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 |
---|---|---|
|
@@ -8,3 +8,11 @@ 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,8 +1,12 @@ | ||
[package] | ||
name = "bhttp-convert" | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
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 | ||
|
||
[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" | ||
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" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[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,8 +1,12 @@ | ||
[package] | ||
name = "ohttp-client-cli" | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
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 | ||
|
||
[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,8 +1,12 @@ | ||
[package] | ||
name = "ohttp-client" | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
description = "Test OHTTP client" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[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,8 +1,12 @@ | ||
[package] | ||
name = "ohttp-server" | ||
version = "0.5.1" | ||
authors = ["Martin Thomson <[email protected]>"] | ||
edition = "2021" | ||
description = "Simple test OHTTP server" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[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" | ||
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" | ||
build = "build.rs" | ||
version.workspace = true | ||
authors.workspace = true | ||
edition.workspace = true | ||
rust-version.workspace = true | ||
license.workspace = true | ||
repository.workspace = true | ||
|
||
[features] | ||
default = ["client", "server", "rust-hpke"] | ||
|