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.
- Host: GitHub
- URL: https://github.com/nunogois/rust-actix
- Owner: nunogois
- Created: 2022-02-12T03:22:48.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2022-03-03T18:37:51.000Z (over 4 years ago)
- Last Synced: 2025-01-26T07:28:10.556Z (over 1 year ago)
- Topics: actix, actix-web, rest-api, rust, rust-lang
- Language: Rust
- Homepage:
- Size: 18.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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!