1
0
Fork 0

Initial commit

This commit is contained in:
Alex Kotov 2020-12-28 08:50:09 +05:00
commit 582a10955d
Signed by: kotovalexarian
GPG Key ID: 553C0EBBEB5D5F08
5 changed files with 28 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/target/

5
Cargo.lock generated Normal file
View 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
View 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
View 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
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}