You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
1 year ago | |
---|---|---|
.github/workflows | 1 year ago | |
db | 1 year ago | |
migrations/2020-05-02-115427_create_users | 2 years ago | |
src | 1 year ago | |
static | 1 year ago | |
tests/integration | 1 year ago | |
.drone.yml | 1 year ago | |
.env | 1 year ago | |
.gitignore | 1 year ago | |
Cargo.lock | 1 year ago | |
Cargo.toml | 1 year ago | |
LICENSE | 1 year ago | |
Makefile.toml | 1 year ago | |
README.md | 1 year ago | |
build.Dockerfile | 1 year ago | |
build.Dockerfile.dockerignore | 1 year ago | |
build.rs | 1 year ago | |
ci.Dockerfile | 1 year ago | |
ci.Dockerfile.dockerignore | 1 year ago | |
diesel.toml | 2 years ago | |
rustfmt.toml | 2 years ago |
README.md
Testing out the Rust framework Actix-Web to create a JSON API CRUD Web App.
API Demo
Get Users
curl -X GET http://localhost:7800/api/users
{
"name": "user1",
"registration_date": "2020-05-09T06:17:26"
}
curl -X GET http://localhost:7800/api/users
[
{
"name": "user1",
"registration_date": "2020-05-09T06:17:26"
},
{
"name": "user2",
"registration_date": "2020-05-12T12:43:13"
},
{
"name": "user3",
"registration_date": "2020-05-15T07:47:50"
}
]
Create User
curl -H "content-type: application/json" \
-X PUT \
-i http://localhost:7800/api/users \
--data '{"name":"user4","password":"test"}'
[
{
"name": "user1",
"registration_date": "2020-05-09T06:17:26"
},
{
"name": "user2",
"registration_date": "2020-05-12T12:43:13"
},
{
"name": "user3",
"registration_date": "2020-05-15T07:47:50"
},
{
"name": "user4",
"registration_date": "2020-08-01T05:04:05"
}
]
Memory Usage
Memory usage as compared to interpreted languages was my primary motivation for looking into rust as a backend language. As of writing, the demo app uses less than 50MB of memory.
License
AGPLv3