Skip to content

Commit

Permalink
Update sails to 0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrePanin committed Sep 25, 2024
1 parent 52d6159 commit a808491
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/build/sails/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ To get started with the migration process, you can use a template to create a ne
- After installation, you can generate a new project named "vara-app" by running:

```bash
cargo-sails new-program vara-app
cargo sails new-program vara-app
```

## Migrating Action Handling
Expand Down
8 changes: 4 additions & 4 deletions docs/getting-started-in-5-minutes.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To get started, install the `sails-cli` tool using the following command:
After installation, you can create a new Vara project named `vara-app` by running:

```bash
cargo-sails new-program vara-app
cargo sails new-program vara-app
```

Your `vara-app` directory tree should look like this:
Expand Down Expand Up @@ -100,13 +100,13 @@ In `Cargo.toml`, the essential libraries required for building your first projec
[build-dependencies]
vara-app-app = { path = "app" }
sails-rs = { version = "0.4.0", features = ["wasm-builder"] }
sails-idl-gen = "0.4.0"
sails-rs = { version = "0.5.0", features = ["wasm-builder"] }
sails-idl-gen = "0.5.0"
[dev-dependencies]
vara-app = { path = ".", features = ["wasm-binary"] }
vara-app-client = { path = "client" }
sails-rs = { version = "0.4.0", features = ["gtest"] }
sails-rs = { version = "0.5.0", features = ["gtest"] }
tokio = { version = "1.39", features = ["rt", "macros"] }
[features]
Expand Down

0 comments on commit a808491

Please sign in to comment.