arti/public/index.html

70 lines
2.5 KiB
HTML
Raw Normal View History

2022-02-25 22:39:32 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
2023-08-12 08:03:56 +01:00
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Arti A Tor implementation in Rust</title>
<style>
.logo {
width: 60%;
margin: auto;
display: block;
}
.body {
width: 60%;
margin: auto;
font-family: 'Source Sans Pro', sans-serif;
}
.links {
margin: 3em auto auto auto;
width: 60%;
}
.link {
color: white;
background: blueviolet;
padding: 1em;
margin: 0.8em;
text-align: center;
font-weight: bold;
}
.link :link {
color: white;
}
.link :visited {
color: #eee;
}
</style>
2022-02-25 22:39:32 +00:00
</head>
<body>
<img src="./arti_logo.png" class="logo" alt="Arti logo">
<div class="body">
<p>Arti is a project to implement
the <a href="https://www.torproject.org/">Tor</a> anonymity protocols in
the
<a href="https://www.rust-lang.org/">Rust</a> programming language.
</p>
<p>Currently, Arti provides a working Tor client.
There is
<a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md#hidden-service-onion-service-client-support">initial support</a> for connecting to onion services,
but more work is needed for equivalent security to the C tor
implementation.
Until Arti is more mature, we
recommend it for experimental use only.
</p>
2023-08-02 01:25:13 +01:00
<p>The latest Arti release is <a href="https://blog.torproject.org/arti_117_released/">1.1.7</a>.
</p>
<div class="links">
2022-09-04 10:08:23 +01:00
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md">Latest README</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti">Source repository</a></p>
<p class="link"><a href="https://tpo.pages.torproject.net/core/doc/rust/arti_client/index.html">API documentation</a></p>
<p class="link"><a href="https://tpo.pages.torproject.net/core/arti/coverage">Coverage reports</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/CONTRIBUTING.md">How to contribute</a></p>
<p class="link"><a href="https://gitlab.torproject.org/tpo/core/arti/-/blob/main/doc/FAQ.md">Frequently asked questions</a></p>
<p class="link"><a href="https://www.torproject.org/">More about Tor</a></p>
</div>
</div>
2022-02-25 22:39:32 +00:00
</body>
</html>