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

docs: add repository field to Cargo.tomls, fix #1452 #1501

Merged
merged 3 commits into from
Dec 23, 2024
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
2 changes: 1 addition & 1 deletion RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,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 dfir_datalog/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_datalog/"
repository = "https://github.com/hydro-project/hydro"
description = "Datalog proc-macro for DFIR"

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

[lints]
Expand Down
1 change: 1 addition & 0 deletions dfir_lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_lang/"
repository = "https://github.com/hydro-project/hydro"
description = "Hydro's Dataflow Intermediate Representation (DFIR) implementation"

[lints]
Expand Down
2 changes: 1 addition & 1 deletion dfir_macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_macro/"
repository = "https://github.com/hydro-project/hydro"
description = "Macro for using Hydro's Data Flow Intermediate Representation (DFIR)."

[lints]
workspace = true

Expand Down
3 changes: 2 additions & 1 deletion dfir_rs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@ version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/dfir_rs/"
description = "Hydro's low-level dataflow runtime and IR"
repository = "https://github.com/hydro-project/hydro"
description = "DFIR runtime for Rust, used by Hydro."

[lints]
workspace = true
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.10.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_deploy/"
repository = "https://github.com/hydro-project/hydro"
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.10.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_cli/"
repository = "https://github.com/hydro-project/hydro"
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.10.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydroflow_deploy_integration/"
repository = "https://github.com/hydro-project/hydro"
description = "`hydro_deploy` integration for Hydroflow"

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

[lints]
Expand Down
1 change: 1 addition & 0 deletions hydro_std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ version = "0.11.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/hydro_plus/"
repository = "https://github.com/hydro-project/hydro"
description = "Standard library of distributed systems building blocks for Hydro"

[lints]
Expand Down
31 changes: 0 additions & 31 deletions hydroflow_plus/tests/compile-fail/send_bincode_lifetime.stderr

This file was deleted.

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.8"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/lattices/"
repository = "https://github.com/hydro-project/hydro"
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.7"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/lattices/"
repository = "https://github.com/hydro-project/hydro"
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.3.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/multiplatform_test/"
repository = "https://github.com/hydro-project/hydro"
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.9"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/pusherator/"
repository = "https://github.com/hydro-project/hydro"
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.5.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft/"
repository = "https://github.com/hydro-project/hydro"
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.4.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft_macro/"
repository = "https://github.com/hydro-project/hydro"
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.4.0"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/stageleft_macro/"
repository = "https://github.com/hydro-project/hydro"
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.7"
edition = "2021"
license = "Apache-2.0"
documentation = "https://docs.rs/variadics/"
repository = "https://github.com/hydro-project/hydro"
description = "Variadic generics on stable Rust using tuple lists"

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

[lib]
Expand Down
Loading