Skip to content
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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:

- uses: Swatinem/rust-cache@v2

- name: Publish workspace crates (rib-core, then rib-repl)
- name: Publish workspace to crates.io
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CRATES_IO_TOKEN }}
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
run: cargo publish --workspace
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Rib type inference has multiple phases. Each phase will contribute to the total
There are a few hotspots now which could be fixed. To understand which phase is taking more time, run any test setting the RIB_PROFILE to 1

```bash
RIB_PROFILE=1 cargo test -p rib-core --test rib_regression -- --nocapture
RIB_PROFILE=1 cargo test -p rib-lang --test rib_regression -- --nocapture
```
Please see a screenshot of the output below:

Expand Down
5 changes: 2 additions & 3 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
resolver = "2"

members = [
"rib-core",
"rib-lang",
"rib-repl",
]

[workspace.dependencies]
rib-core = { version = "=0.0.0", path = "rib-core" }
rib-lang = { version = "=0.0.0", path = "rib-lang" }
rib-repl = { version = "=0.0.0", path = "rib-repl" }

anyhow = "1.0.97"
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ A programming language to interact with WebAssembly components
to call functions and manipulate data in WASM components running in a Wasmtime environment.
This work is on it's way.

## Developing rib-core
## Developing rib-lang

[rib-core/README.md](rib-core/README.md).
[rib-lang/README.md](rib-lang/README.md).

## Contributing

Expand Down
File renamed without changes.
3 changes: 1 addition & 2 deletions rib-core/Cargo.toml → rib-lang/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "rib-core"
name = "rib-lang"
version = "0.0.0"
edition = "2021"

Expand All @@ -16,7 +16,6 @@ async-trait = { workspace = true }
bigdecimal = { workspace = true }
la-arena = { workspace = true }
combine = { workspace = true }
lazy_static = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion rib-core/README.md → rib-lang/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# rib-core
# rib-lang

Core library for the Rib language: parser, type inference, compiler, and interpreter.

Expand Down
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion rib-repl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ path = "src/lib.rs"
harness = false

[dependencies]
rib-core = { workspace = true }
rib-lang = { workspace = true }

anyhow = { workspace = true }
async-trait = { workspace = true }
Expand Down
Loading