Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Arti
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jill
Arti
Commits
6d7dcdc6
Commit
6d7dcdc6
authored
2 years ago
by
Nick Mathewson
Browse files
Options
Downloads
Patches
Plain Diff
Update README.md files using readmes script
parent
3bab96f0
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
crates/arti-client/README.md
+2
-0
2 additions, 0 deletions
crates/arti-client/README.md
crates/arti/README.md
+9
-1
9 additions, 1 deletion
crates/arti/README.md
crates/tor-basic-utils/README.md
+4
-0
4 additions, 0 deletions
crates/tor-basic-utils/README.md
with
15 additions
and
1 deletion
crates/arti-client/README.md
+
2
−
0
View file @
6d7dcdc6
...
...
@@ -85,6 +85,7 @@ those traits if the `tokio` crate feature is enabled.
### Example: making connections over Tor
```
rust
#
// Initiate a connection over Tor to example.com, port 80.
let
mut
stream
=
tor_client
.connect
((
"example.com"
,
80
))
.await
?
;
...
...
@@ -104,6 +105,7 @@ let mut buf = Vec::new();
stream
.read_to_end
(
&
mut
buf
)
.await
?
;
println!
(
"{}"
,
String
::
from_utf8_lossy
(
&
buf
));
#
```
### More advanced usage
...
...
This diff is collapsed.
Click to expand it.
crates/arti/README.md
+
9
−
1
View file @
6d7dcdc6
# arti
A minimal client for connecting to the tor network
A minimal command line program for connecting to the tor network
(If you want a more general Tor client library interface, use [
`arti_client`
].)
This crate is the primary command-line interface for
[
Arti
](
https://gitlab.torproject.org/tpo/core/arti/
)
, a project to
...
...
@@ -75,4 +77,10 @@ See the [README
file
](
https://gitlab.torproject.org/tpo/core/arti/-/blob/main/README.md
)
for a more complete list of missing features.
## Library for building command-line client
This library crate contains code useful for making
a command line program similar to
`arti`
.
The API should not be considered stable.
License: MIT OR Apache-2.0
This diff is collapsed.
Click to expand it.
crates/tor-basic-utils/README.md
+
4
−
0
View file @
6d7dcdc6
# tor-basic-utils
`tor-basic-utils`
: Utilities (low-level) for Tor
Miscellaneous utilities for
`tor-*`
and
`arti-*`
.
...
...
@@ -8,3 +10,5 @@ So it contains only utilities which have no `tor-*` (or `arti-*`) dependencies.
There is no particular theme.
More substantial sets of functionality with particular themes
are to be found in other
`tor-*`
crates.
License: MIT OR Apache-2.0
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment