Skip to content

Commit

Permalink
docs: add repository field to Cargo.tomls, fix #1452
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Oct 21, 2024
1 parent e564b13 commit 89c30be
Show file tree
Hide file tree
Showing 18 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ junk you mistakenly pushed.

When adding a new crate which is published, you need to:
1. Ensure `publish = true` and other required fields (`license`, `description`, `documentation`,
etc.), are set in `my_crate/Cargo.toml`
`repository`, etc.), are set in `my_crate/Cargo.toml`
https://doc.rust-lang.org/cargo/reference/publishing.html#before-publishing-a-new-crate
2. Ensure any `path` dependencies to/from `my_crate` also include `version = "^0.1.0"`
(substitute correct version).
Expand Down
1 change: 1 addition & 0 deletions hydro_deploy/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_deploy/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Hydro Deploy"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydro_deploy/hydro_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_cli/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Hydro Deploy Command Line Interface"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydro_deploy/hydroflow_deploy_integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_deploy_integration/"
repository = "https://github.com/hydro-project/hydroflow"
description = "`hydro_deploy` integration for Hydroflow"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Hydro's low-level dataflow runtime and IR"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow_datalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_datalog/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Datalog proc-macro for Hydroflow"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow_datalog_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_datalog_core/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Datalog implementation for Hydroflow"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow_lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_lang/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Hydroflow's Surface Syntax implementation"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_macro/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Macro for using Hydroflow's Surface Syntax"

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydroflow_plus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.9.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_plus/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Functional programming API for hydroflow"

[lints]
Expand Down
1 change: 1 addition & 0 deletions lattices/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.5.7"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/lattices/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Lattice data types for simplifying distributed state by providing associativity, commutativity, and idempotence."

[lints]
Expand Down
1 change: 1 addition & 0 deletions lattices_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.5.6"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/lattices/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Procedural macros for the `lattices` crate."

[lints]
Expand Down
1 change: 1 addition & 0 deletions multiplatform_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.2.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/multiplatform_test/"
repository = "https://github.com/hydro-project/hydroflow"
description = "A simple attribute macro to combine `#[test]` and `#[wasm_bindgen_test]`"

[lints]
Expand Down
1 change: 1 addition & 0 deletions pusherator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.8"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/pusherator/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Push-based version of Rust iterators"

[lints]
Expand Down
1 change: 1 addition & 0 deletions stageleft/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.4.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Type-safe staged programming for Rust"

[lints]
Expand Down
1 change: 1 addition & 0 deletions stageleft_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft_macro/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Helper macros for the stageleft crate"

[lints]
Expand Down
1 change: 1 addition & 0 deletions stageleft_tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.3.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft_macro/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Helper macros for the stageleft crate"

[lints]
Expand Down
1 change: 1 addition & 0 deletions variadics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.0.6"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/variadics/"
repository = "https://github.com/hydro-project/hydroflow"
description = "Variadic generics on stable Rust using tuple lists"

[lints]
Expand Down

0 comments on commit 89c30be

Please sign in to comment.