-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.87 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!DOCTYPE html>
<html lang="en">
<link rel="stylesheet" href="./style.css">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>VPlugin: Plugin framework for Rust projects.</title>
</head>
<body>
<div class="container">
<div class="headerbar">
<a align="right" href="./index.html">Home</a> |
<a align="right" href="https://crates.io/crates/vplugin">Crates.io</a> |
<a align="right" href="https://docs.rs/crates/vplugin">Documentation</a>
</div>
<div class="container">
<h1>
Creating a
<b id="colorized">plugin system</b> <br>
has never been done
<b id="colorized">easier in Rust!</b>
</h1>
<text>
Whether it's a game, a command line utility, a library or a virtual machine, <br>
VPlugin has you covered. Easy to use, lightweight and efficient, VPlugin will <br>
do all the dirty work for you and let you focus on your project.
</text>
<br>
<button id="get-started">Get Started</button>
<button onclick=location.href="#documentation" id="get-started">Documentation</button>
</div>
</div>
<div class="container">
<h1 id="huge">
Key Features
</h1>
<ul>
<li>
<text>
Memory Safety:
</text>
</li>
<i id="small">
VPlugin is written in Rust, famous for its memory safety (And not only) guarantees. <br>
This gives it a significant advantage over C or C++ alternatives without sacrificing <br>
on the speed.
</i>
<li>
<text>
Easy to use:
</text>
<br>
<i id="small">
Even if a complete beginner, VPlugin is easy to grasp on. It does not use Rust-specific <br>
concepts like lifetimes and generics.
</i>
</li>
</ul>
</div>
</body>
</html>