Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/CircuitCoder/MeowRust
Relaxed Rust (for cats)
https://github.com/CircuitCoder/MeowRust
Last synced: 2 months ago
JSON representation
Relaxed Rust (for cats)
- Host: GitHub
- URL: https://github.com/CircuitCoder/MeowRust
- Owner: CircuitCoder
- License: mit
- Created: 2019-10-16T19:04:11.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2019-11-20T12:23:50.000Z (about 5 years ago)
- Last Synced: 2024-11-09T21:03:06.241Z (2 months ago)
- Language: Scala
- Size: 142 KB
- Stars: 16
- Watchers: 5
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MeowRust
> Relaxed Rust variant that even cats can master
---
## What is this
This is a educational compiler for the MeowRust language, a minimal Rust-like language. MeowRust is different from rust in the following ways:
- MeowRust doesn't enforce borrow checking, but will grammatically accepts lifetime notations.
- MeowRust doesn't have capturing closures.
- MeowRust doesn't have macros, and doesn't support most attributes.
- MeowRust doesn't have first-class multi-threading support, so no Send & Sync & friends.
- MeowRust introduces an new operator to do std::transmute
- MeowRust requires explict acknowledgement for drops and invoking non-default deref implementationTL;DR: Very unsafe and verbose rust.
## Motivation
MeowRust is created as a lab project for Tsinghua Univ compiler course.
Our primary intention is to make Rust more suitable for writing bare-metal softwares, because we would like to get Rust's expressiveness when writing softwares like the second stage bootloader for our archtecture course, or router's control plane for our networking course.
## Distribution
All source code under this repository is distributed under the MIT license. A full copy of the license can be found in the LICENSE file