Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use workspace metadata as primary #42

Merged
merged 1 commit into from
Dec 23, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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