Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oktal/lys
REST SDK implementation in Rust
https://github.com/oktal/lys
Last synced: about 21 hours ago
JSON representation
REST SDK implementation in Rust
- Host: GitHub
- URL: https://github.com/oktal/lys
- Owner: oktal
- License: gpl-3.0
- Created: 2014-08-26T01:08:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-12-23T22:08:48.000Z (about 10 years ago)
- Last Synced: 2023-08-07T04:07:02.343Z (over 1 year ago)
- Size: 340 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Lys
=====Lys is a projet that aims to implementation an experimental REST SDK in Rust
Rust, even though yet not very popular, is a very promising language made-in Mozilla.
However, for real use cases, Rust lacks a good standard library support for networking.For example, it is not yet possible to start an HttpServer that can handle incoming
REST requests in Rust.
As opposed to Rust, Go has a very good networking standard library that provides both
an HTTP server and HTTP client implementations. In a few lines of code, it is possible
in Go to create an http rest service.The goal of this projet is to try implementing a robust and scalable REST SDK in Rust.
This project is essentially a research project as it involves many things like parsing
(HTTP request parsing), routing, non-blocking event handling, concurrency, asynchronous
programming, ...