Skip to content

Commit

Permalink
chore: Rename Hydroflow -> DFIR (#1620)
Browse files Browse the repository at this point in the history
Work In Progress:
- [x] hydroflow_macro
- [x] hydroflow_datalog_core
- [x] hydroflow_datalog
- [x] hydroflow_lang
- [x] hydroflow
  • Loading branch information
rohitkulshreshtha authored Dec 21, 2024
1 parent 808dce1 commit 43617b8
Show file tree
Hide file tree
Showing 1,068 changed files with 27,378 additions and 4,019 deletions.
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
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
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

0 comments on commit 43617b8

Please sign in to comment.