File tree 1 file changed +3
-4
lines changed
1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 1
1
rust-9p
2
2
=====
3
- Filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9.
3
+ Tokio-based asynchronous filesystems library using 9P2000.L protocol, an extended variant of 9P from Plan 9.
4
4
5
5
[ ![ Build Status] ( https://travis-ci.org/pfpacket/rust-9p.svg?branch=master )] ( https://travis-ci.org/pfpacket/rust-9p )
6
6
@@ -12,15 +12,15 @@ Use Rust nightly.
12
12
13
13
14
14
## Usage
15
- Add this to your crate:
15
+ Add the following to your crate:
16
16
17
17
``` rust
18
18
extern crate rs9p;
19
19
```
20
20
21
21
22
22
## unpfs
23
- unpfs is an example file server which just exports your filesystem.
23
+ ` unpfs ` is the reference implementation of a file server which exports your filesystem.
24
24
You can build unpfs with the following commands below:
25
25
26
26
``` bash
@@ -32,7 +32,6 @@ and run unpfs with the following command to export `/exportdir`:
32
32
``` bash
33
33
# TCP
34
34
cargo run --release ' tcp!0.0.0.0!564' /exportdir
35
-
36
35
# or
37
36
./target/release/unpfs ' tcp!0.0.0.0!564' /exportdir
38
37
You can’t perform that action at this time.
0 commit comments