Skip to content

Commit 63a0aae

Browse files
committed
update README.md (again)
1 parent d71b881 commit 63a0aae

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

README.md

Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
- 🕹️ Paradigm-changing (no more unsafe code!)
2121
- 🔥 Blazingly fast
2222
- 💡 Easy to use
23-
- Featuring way 👋 too 2️⃣ many 🤯 emojis in the 📖 readme 🔥 🦀 💨
23+
- 🏆 Featuring way 👋 too 2️⃣ many 🤯 emojis in the 📖 readme 🔥 🦀 💨
2424
- **🦀 Built in 100% memory-safe Rust**
2525

2626
## Example
@@ -36,7 +36,7 @@ pub fn segfault() {
3636

3737
Rust is an amazing language. You can program a lot of useful things while ensuring that your program will stay safe. Unfortunately, safe Rust is quite limiting. For example, you cannot introduce code that could corrupt the program's memory. Now, with **cve-rs**, you can corrupt your program's memory without corrupting your program's memory.
3838

39-
We are very committed to making sure **cve-rs** is memory-safe. We know that unsafe code can have unintended consequences, such as memory unsafety that causes bugs like segmentation faults, use-after-frees, and buffer overflows!
39+
We are very committed to making sure **cve-rs** is memory-safe. We know that unsafe code can have unintended consequences, such as memory unsafety that causes bugs like segmentation faults, use-after-frees, and buffer overflows.
4040

4141
That is why **cve-rs** uses `#![deny(unsafe_code)]` in the entire codebase. There is not a single block of `unsafe` code (except for some [tests](./src/transmute.rs#L56)) in this project.
4242

@@ -58,14 +58,14 @@ That is why **cve-rs** uses `#![deny(unsafe_code)]` in the entire codebase. Ther
5858
To use it as a library:
5959

6060
```sh
61-
$ cargo add cve-rs
61+
cargo add cve-rs
6262
```
6363

6464
Or to run our example binary:
6565

6666
```sh
67-
$ cargo install cve-rs
68-
$ cve-rs
67+
cargo install cve-rs
68+
cve-rs
6969
```
7070

7171
## WASM support
@@ -79,10 +79,6 @@ cargo build --target wasm32-wasi
7979
wasmer run target/wasm32-wasi/debug/cve-rs.wasm
8080
```
8181

82-
## Wait, how safe is cve-rs?!?
83-
84-
lmao
85-
8682
## Contributors
8783

8884
Special thanks to [@Bright-Shard](https://github.com/Bright-Shard) and [@Creative0708](https://github.com/Creative0708), and everyone else who contributed to **cve-rs**.
@@ -91,8 +87,14 @@ Special thanks to [@Bright-Shard](https://github.com/Bright-Shard) and [@Creativ
9187

9288
This project is licensed under the [GLWTSPL](/LICENSE).
9389

90+
## Wait, how safe is cve-rs?!?
91+
92+
This project is licensed under the [GLWTSPL](/LICENSE).
93+
9494
## License
9595

9696
This project is licensed under the [GLWTSPL](/LICENSE).
9797

9898
![Good Luck](https://github.com/me-shaon/GLWTPL/raw/master/good-luck.gif)
99+
100+
...and godspeed.

0 commit comments

Comments
 (0)