irc
the irc crate – usable, async IRC for Rust
File Explorer
- ci.yml
- build-bot.rs
- convertconf.rs
- multiserver.rs
- repeater.rs
- simple.rs
- simple_plaintext.rs
- simple_proxy.rs
- tooter.rs
- tweeter.rs
- caps.rs
- chan.rs
- colors.rs
- command.rs
- error.rs
- irc.rs
- lib.rs
- line.rs
- message.rs
- mode.rs
- prefix.rs
- response.rs
- Cargo.toml
- client_config.json
- client_config.toml
- client_config.yaml
- config.rs
- mod.rs
- proxy.rs
- user.rs
- conn.rs
- mock.rs
- mod.rs
- prelude.rs
- transport.rs
- error.rs
- lib.rs
- .gitignore
- .travis.yml
- Cargo.toml
- CODE_OF_CONDUCT.md
- CONTRIBUTING.md
- LICENSE.md
- README.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
cargo add
View Details ▼
cargo add
Add dependencies to a Rust project's `Cargo.toml` manifest.
cargo add {{dependency}}
Add the latest version of a dependency to the current project:
cargo add {{dependency}}@{{version}}
Add a specific version of a dependency:
cargo add {{dependency}} {{[-F|--features]}} {{feature_1,feature_2,...}}
Add a dependency and enable one or more specific features:
time
View Details ▼
time
Measure how long a command took to run.
Note: `time` can either exist as a shell builtin, a standalone program, or both.
See also: `times`.
time {{command}}
Run the `command` and print the time measurements to `stdout`:
time
Display the current system time and prompt to enter a new time (leave empty to keep unchanged):
time read
Create a very simple stopwatch (only works in Bash):
net
View Details ▼
net
System utility to view and modify network-related settings.
net {{start|stop}} {{service}}
Start or stop a Windows service synchronously:
net use {{\\smb_shared_folder}} /USER:{{username}}
Make sure an SMB share is available in the current console:
net share
Show the folders currently shared over SMB:
