mirror of
https://github.com/jht5945/rust_util.git
synced 2025-12-27 23:40:05 +08:00
30 lines
309 B
Markdown
30 lines
309 B
Markdown
## Rust Util
|
|
|
|
|
|
Config `Cargo.toml`:
|
|
```
|
|
[dependencies]
|
|
rust_util = { git = "https://github.com/jht5945/rust_util" }
|
|
```
|
|
|
|
Use in `*.rs`:
|
|
```
|
|
extern crate rust_util;
|
|
|
|
...
|
|
|
|
use rust_util::*;
|
|
```
|
|
|
|
Update git crate:
|
|
```
|
|
$ cargo update
|
|
```
|
|
|
|
|
|
## Update Log
|
|
|
|
* Jun 21, 2020 v0.3.0
|
|
* add struct `JoinFilesReader`
|
|
|