Initial commit
This commit is contained in:
commit
582a10955d
5 changed files with 28 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
/target/
|
5
Cargo.lock
generated
Normal file
5
Cargo.lock
generated
Normal file
|
@ -0,0 +1,5 @@
|
|||
# This file is automatically @generated by Cargo.
|
||||
# It is not intended for manual editing.
|
||||
[[package]]
|
||||
name = "rustraceroute"
|
||||
version = "0.0.0"
|
13
Cargo.toml
Normal file
13
Cargo.toml
Normal file
|
@ -0,0 +1,13 @@
|
|||
[package]
|
||||
name = "rustraceroute"
|
||||
version = "0.0.0"
|
||||
authors = ["Alex Kotov <kotovalexarian@gmail.com>"]
|
||||
edition = "2018"
|
||||
description = "rustraceroute - print the route packets trace to network host"
|
||||
homepage = "https://github.com/kotovalexarian/rustraceroute"
|
||||
repository = "https://github.com/kotovalexarian/rustraceroute"
|
||||
license = "MIT"
|
||||
keywords = ["network"]
|
||||
categories = ["command-line-utilities", "network-programming"]
|
||||
|
||||
[dependencies]
|
6
README.md
Normal file
6
README.md
Normal file
|
@ -0,0 +1,6 @@
|
|||
rustraceroute
|
||||
=============
|
||||
|
||||
[![Version](https://img.shields.io/crates/v/rustraceroute)](https://crates.io/crates/rustraceroute)
|
||||
|
||||
Print the route packets trace to network host.
|
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
println!("Hello, world!");
|
||||
}
|
Reference in a new issue