Skip to content

Commit

Permalink
chore: use workspace metadata as primary
Browse files Browse the repository at this point in the history
  • Loading branch information
hougesen committed Dec 23, 2023
1 parent 970a7cb commit d8a7135
Show file tree
Hide file tree
Showing 5 changed files with 39 additions and 11 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
members = ["hitt-cli", "hitt-formatter", "hitt-parser", "hitt-request"]
resolver = "2"


[workspace.package]
version = "0.0.1"
authors = ["Mads Hougesen <[email protected]>"]
Expand All @@ -12,3 +11,5 @@ rust-version = "1.70.0"
repository = "https://github.com/hougesen/hitt"
documentation = "https://github.com/hougesen/hitt#readme"
keywords = ["http", "cli"]
description = "command line HTTP testing tool focused on speed and simplicity"
homepage = "https://github.com/hougesen/hitt"
14 changes: 10 additions & 4 deletions hitt-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
[package]
name = "hitt-cli"
version = "0.0.1"
edition = "2021"
description = "Command line HTTP testing tool focused on speed and simplicity"
name = "hitt"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
rust-version.workspace = true
homepage.workspace = true
documentation.workspace = true

[[bin]]
name = "hitt"
Expand Down
11 changes: 9 additions & 2 deletions hitt-formatter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "hitt-formatter"
version = "0.0.1"
edition = "2021"
description = "Code formatter for the hitt http testing tool"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
rust-version.workspace = true
homepage.workspace = true

[dependencies]
jsonformat = "2.0.0"
11 changes: 9 additions & 2 deletions hitt-parser/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "hitt-parser"
version = "0.0.1"
edition = "2021"
description = "Parser for http files for the hitt http testing tool"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
rust-version.workspace = true
homepage.workspace = true

[dependencies]
http = "0.2.9"
11 changes: 9 additions & 2 deletions hitt-request/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "hitt-request"
version = "0.0.1"
edition = "2021"
description = ""
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
rust-version.workspace = true
homepage.workspace = true

[dependencies]
hitt-parser = { path = "../hitt-parser" }
Expand Down

0 comments on commit d8a7135

Please sign in to comment.