diff --git a/.clippy.toml b/.clippy.toml new file mode 100644 index 0000000..b3c3a24 --- /dev/null +++ b/.clippy.toml @@ -0,0 +1 @@ +msrv = "1.63.0" diff --git a/Cargo.toml b/Cargo.toml index dd427e8..0621518 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,11 +8,3 @@ members = [ "ohttp-client-cli", "ohttp-server", ] - -[workspace.package] -version = "0.5.1" -authors = ["Martin Thomson "] -edition = "2021" -rust-version = "1.63.0" -license = "MIT OR Apache-2.0" -repository = "https://github.com/martinthomson/ohttp" diff --git a/bhttp-convert/Cargo.toml b/bhttp-convert/Cargo.toml index d07a884..634ab92 100644 --- a/bhttp-convert/Cargo.toml +++ b/bhttp-convert/Cargo.toml @@ -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 "] +edition = "2021" [dependencies] structopt = "0.3" diff --git a/bhttp/Cargo.toml b/bhttp/Cargo.toml index 623720d..9dde300 100644 --- a/bhttp/Cargo.toml +++ b/bhttp/Cargo.toml @@ -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 "] +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"] diff --git a/ohttp-client-cli/Cargo.toml b/ohttp-client-cli/Cargo.toml index 358c0df..b49f38b 100644 --- a/ohttp-client-cli/Cargo.toml +++ b/ohttp-client-cli/Cargo.toml @@ -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 "] +edition = "2021" [features] default = ["rust-hpke"] diff --git a/ohttp-client/Cargo.toml b/ohttp-client/Cargo.toml index 21702e3..3f907d7 100644 --- a/ohttp-client/Cargo.toml +++ b/ohttp-client/Cargo.toml @@ -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 "] +edition = "2021" [features] default = ["rust-hpke"] diff --git a/ohttp-server/Cargo.toml b/ohttp-server/Cargo.toml index 9b829c7..dd3f896 100644 --- a/ohttp-server/Cargo.toml +++ b/ohttp-server/Cargo.toml @@ -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 "] +edition = "2021" [features] default = ["rust-hpke"] diff --git a/ohttp/Cargo.toml b/ohttp/Cargo.toml index d06274c..207fa55 100644 --- a/ohttp/Cargo.toml +++ b/ohttp/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "ohttp" -description = "Oblivious HTTP (RFC 9458)" +version = "0.5.1" +authors = ["Martin Thomson "] +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"]