An open API service indexing awesome lists of open source software.

https://github.com/nunogois/rust-actix

An extremely fast Rust + Actix REST API example using shared mutable state.
https://github.com/nunogois/rust-actix

actix actix-web rest-api rust rust-lang

Last synced: over 1 year ago
JSON representation

An extremely fast Rust + Actix REST API example using shared mutable state.

Awesome Lists containing this project

README

          

# rust-actix

Actix is a powerful, pragmatic, and extremely fast web framework for Rust: https://actix.rs/

## Get Started

Install Rust: https://www.rust-lang.org/tools/install

```sh
# Run
cargo run

# Run with auto-reload: https://crates.io/crates/cargo-watch
cargo watch -x 'run --bin rust-actix'

# Build
cargo build

# Build for release
cargo build --release
```

I'm still learning Rust, so let me know if you catch something wrong!