Skip to content
Open
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
2 changes: 1 addition & 1 deletion linera-protocol
Submodule linera-protocol updated 1004 files
5 changes: 5 additions & 0 deletions src/developers/backend/creating_a_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ files:

- `Cargo.toml`: your project's manifest filled with the necessary dependencies
to create an app;
- `rust-toolchain.toml`: a file with configuration for Rust compiler.

> **NOTE:** currently the latest Rust version compatible with our network is
> `1.86.0`. Make sure it's the one used by your project.

- `src/lib.rs`: the application's ABI definition;
- `src/state.rs`: the application's state;
- `src/contract.rs`: the application's contract, and the binary target for the
Expand Down
2 changes: 1 addition & 1 deletion src/developers/frontend/setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ We'll call this page `index.html`, and it will be the only file we need to edit
to build our frontend.

```html
<!DOCTYPE html>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
Expand Down
Loading