Skip to content

Commit

Permalink
fixup! chore: update links for renamed repo (excluding CHANGELOG.mds)
Browse files Browse the repository at this point in the history
  • Loading branch information
MingweiSamuel committed Dec 23, 2024
1 parent e3a36c3 commit 3d9b465
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion dfir_rs/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DFIR

[DFIR](https://github.com/hydro-project/hydroflow) (Dataflow Intermediate Representation) is a small language and compiler for low-latency
DFIR (Dataflow Intermediate Representation) is a small language and compiler for low-latency
dataflow programs, written in Rust. DFIR serves as dataflow representation and runtime execution library for the
[Hydro language stack](https://hydro.run/docs/dfir/ecosystem), which is under development
as a complete compiler stack for distributed programming languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/research.js
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const papers = [
<>Hydroflow is primarily a low-level compilation target for future declarative cloud programming languages, but developers can use it directly to precisely control program execution or fine-tune and debug compiled programs.</>
],
conf: "UC Berkeley Technical Report",
links: <><Link href="pathname:///papers/hydroflow-thesis.pdf">PDF</Link> / <Link href="https://github.com/hydro-project/hydroflow">GitHub</Link></>
links: <><Link href="pathname:///papers/hydroflow-thesis.pdf">PDF</Link> / <Link href="https://github.com/hydro-project/hydro">GitHub</Link></>
},
{
title: "New Directions in Cloud Programming",
Expand Down
12 changes: 6 additions & 6 deletions template/hydro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,18 @@ default = ["stageleft_devel"]
stageleft_devel = []

[dependencies]
hydro_lang = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
hydro_std = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
stageleft = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
hydro_lang = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
hydro_std = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
stageleft = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
tokio = { version = "1.29.0", features = [ "full" ] }

[build-dependencies]
stageleft_tool = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
stageleft_tool = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }

[dev-dependencies]
async-ssh2-lite = { version = "0.5.0", features = ["vendored-openssl"] }
hydro_deploy = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
hydro_lang = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydroflow.git' }}", branch = "{{ hydro_branch | default: 'main' }}", features = [
hydro_deploy = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}" }
hydro_lang = { git = "{{ hydro_git | default: 'https://github.com/hydro-project/hydro.git' }}", branch = "{{ hydro_branch | default: 'main' }}", features = [
"deploy",
] }
tokio-stream = { version = "0.1.3", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion template/hydro/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## Getting Started
This is a template for a Rust project that uses [Hydro](http://github.com/hydro-project/hydroflow) for distributed services. To generate a project, run
This is a template for a Rust project that uses [Hydro](http://github.com/hydro-project/hydro) for distributed services. To generate a project, run

```bash
cargo install cargo-generate
Expand Down

0 comments on commit 3d9b465

Please sign in to comment.