Get hostname. Compatible with windows and unix.
Add dependency to Cargo.toml
toml
[dependencies]
hostname = "^0.1"
In your main.rs
or lib.rs
:
rust
extern crate hostname;
```rust use hostname::get_hostname;
assert!(gethostname().issome()); ```
hostname is primarily distributed under the terms of the MIT license. See LICENSE for details.