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: Rename Hydroflow -> DFIR #1620

Merged
merged 10 commits into from
Dec 21, 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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,11 +116,11 @@ jobs:
target: wasm32-unknown-unknown
override: ${{ matrix.rust_release == 'latest-stable' }}

- name: Check hydroflow_lang
- name: Check dfir_lang
uses: actions-rs/cargo@v1
with:
command: check
args: -p hydroflow_lang --target wasm32-unknown-unknown
args: -p dfir_lang --target wasm32-unknown-unknown

test:
name: Test Suite
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
CARGO_TARGET_WASM32_UNKNOWN_UNKNOWN_RUNNER: wasm-bindgen-test-runner
with:
command: test
args: -p hydroflow --target wasm32-unknown-unknown --tests --no-fail-fast
args: -p dfir_rs --target wasm32-unknown-unknown --tests --no-fail-fast

build-website:
name: Build Website
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ jobs:
--no-changelog-preview --allow-fully-generated-changelogs
--bump ${{ inputs.bump }} --bump-dependencies auto
${{ inputs.execute && '--execute' || '--no-publish' }}
hydroflow hydroflow_lang hydroflow_macro hydroflow_plus
hydroflow_plus_std hydroflow_datalog hydroflow_datalog_core
hydroflow dfir_lang dfir_macro hydroflow_plus
hydroflow_plus_std dfir_datalog dfir_datalog_core
Comment on lines +89 to +90
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Seems the hydroflow_plus ones here didn't get updated

hydro_deploy hydro_cli hydroflow_deploy_integration
stageleft stageleft_macro stageleft_tool
multiplatform_test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
uses: cargo-generate/cargo-generate-action@v0.20.0
with:
name: generated
template: template/hydroflow
template: template/dfir
arguments: "-d hydroflow_git=${{ github.event.pull_request.head.repo.clone_url }} -d hydroflow_branch=${{ github.event.pull_request.head.ref }}"
- name: Move generated project
run: |
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ The Hydroflow repo is set up as a monorepo and [Cargo workspace](https://doc.rus
Relative to the repository root:

* `hydroflow` is the main Hydroflow package, containing the Hydroflow runtime. It re-exports the
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

dfir_rs

surface syntax macros in `hydroflow_macro` and `hydroflow_lang`. The runtime is the "scheduled
surface syntax macros in `dfir_macro` and `dfir_lang`. The runtime is the "scheduled
layer" while the surface syntax compiler is the "compiled layer".
* `hydro_lang` and related (hydro_*) packages contain Hydro, which is a functional syntax built on
top of `hydroflow`.
* `hydroflow_datalog` provides a datalog compiler, based on top of the Hydroflow surface syntax.
* `dfir_datalog` provides a datalog compiler, based on top of the Hydroflow surface syntax.
* `docs` is the [Hydro.run](https://hydro.run/) website. `website_playground` contains the
playground portion of the website, used for compiling Hydroflow in-browser via WASM.
* `benches` contains some microbenchmarks for Hydroflow and other frameworks.
Expand All @@ -33,7 +33,7 @@ There are auxillary repositories as well:

* [`hydro-project/rust-sitter`](https://github.com/hydro-project/rust-sitter) provides a
[Tree-sitter](https://tree-sitter.github.io/tree-sitter/)-based parser generator interface, used
by `hydroflow_datalog`.
by `dfir_datalog`.

## Rust

Expand Down
238 changes: 119 additions & 119 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading
Loading