mirror of
https://github.com/jht5945/rust_util.git
synced 2025-12-27 23:40:05 +08:00
25 lines
236 B
Markdown
25 lines
236 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
|
|
```
|
|
|
|
|