oxc-zed 0.4.3

Oxc Zed Extension
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
1. Install Rust following [the official instructions]https://rust-lang.org/tools/install/.
   After installing Rust, run the following command in the project root to verify it is working as expected.
    ```bash
   rustup show
   ```
   `rustup show` reads the `./rust-toolchain.toml` file and installs the correct Rust toolchain and components for this
   project.
2. Install [binstall]https://github.com/cargo-bins/cargo-binstall to enable fast, low-complexity usage of the
   required Cargo tools for this project.
   ```bash
    cargo install cargo-binstall
   ```
3. Install [just]https://github.com/casey/just which is a handy way to run project-specific commands.
    ```bash
   cargo binstall just -y
    ```
4. Run `just ready` to verify that the project builds and runs correctly. Run this command before creating a PR to ensure
   that CI will pass.