Skip to content

Commit

Permalink
Revert the workspace.package stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
martinthomson committed Feb 8, 2024
1 parent 27169f3 commit 978dcfb
Show file tree
Hide file tree
Showing 8 changed files with 27 additions and 50 deletions.
1 change: 1 addition & 0 deletions .clippy.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
msrv = "1.63.0"
8 changes: 0 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,3 @@ members = [
"ohttp-client-cli",
"ohttp-server",
]

[workspace.package]
version = "0.5.1"
authors = ["Martin Thomson <mt@lowentropy.net>"]
edition = "2021"
rust-version = "1.63.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/martinthomson/ohttp"
10 changes: 3 additions & 7 deletions bhttp-convert/Cargo.toml
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 <mt@lowentropy.net>"]
edition = "2021"

[dependencies]
structopt = "0.3"
Expand Down
14 changes: 7 additions & 7 deletions bhttp/Cargo.toml
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 <mt@lowentropy.net>"]
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"]
Expand Down
10 changes: 3 additions & 7 deletions ohttp-client-cli/Cargo.toml
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 <mt@lowentropy.net>"]
edition = "2021"

[features]
default = ["rust-hpke"]
Expand Down
10 changes: 3 additions & 7 deletions ohttp-client/Cargo.toml
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 <mt@lowentropy.net>"]
edition = "2021"

[features]
default = ["rust-hpke"]
Expand Down
10 changes: 3 additions & 7 deletions ohttp-server/Cargo.toml
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 <mt@lowentropy.net>"]
edition = "2021"

[features]
default = ["rust-hpke"]
Expand Down
14 changes: 7 additions & 7 deletions ohttp/Cargo.toml
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 <mt@lowentropy.net>"]
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"]
Expand Down

0 comments on commit 978dcfb

Please sign in to comment.