Conduit is a simple, fast and reliable chat server powered by Matrix https://conduit.rs
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.
19 lines
527 B
19 lines
527 B
|
6 years ago
|
# Matrix Homeserver in Rust
|
||
|
|
|
||
|
|
#### Goals
|
||
|
|
|
||
|
|
A Matrix Homeserver that's faster than others.
|
||
|
|
|
||
|
|
#### What is it build on?
|
||
|
|
|
||
|
|
- [Ruma](https://www.ruma.io): Useful structures for endpoint requests and responses that can be (de)serialized
|
||
|
|
- [Sled](https://github.com/spacejam/sled): A simple (key, value) database with good performance
|
||
|
|
- [Rocket](https://rocket.rs): A flexible web framework
|
||
|
|
|
||
|
|
#### Roadmap
|
||
|
|
|
||
|
|
- [x] Register, login, authentication tokens
|
||
|
|
- [ ] Create room messages
|
||
|
|
- [ ] Sync room messages
|
||
|
|
- [ ] Join rooms, lookup room ids
|