From 9e0f346f4c166d800b7a8f46b6cc348007052060 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 17 Jul 2023 11:17:05 -0400 Subject: [PATCH] Prepping for first releases --- Cargo.toml | 5 +++-- README.md | 12 +----------- src/lib.rs | 3 +++ 3 files changed, 7 insertions(+), 13 deletions(-) create mode 100644 src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index cab62a0..40ebe61 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,9 +3,10 @@ name = "protomask" version = "0.1.0" authors = ["Evan Pratten "] edition = "2021" -description = "" +description = "A user space NAT64 implementation" readme = "README.md" -homepage = "https://github.com/ewpratten/protomask" +homepage = "https://protomask.ewpratten.com" +documentation = "https://docs.rs/protomask" repository = "https://github.com/ewpratten/protomask" license = "GPL-3.0" keywords = [] diff --git a/README.md b/README.md index bf54dcf..938fc91 100644 --- a/README.md +++ b/README.md @@ -2,15 +2,5 @@ [![Crates.io](https://img.shields.io/crates/v/protomask)](https://crates.io/crates/protomask) [![Docs.rs](https://docs.rs/protomask/badge.svg)](https://docs.rs/protomask) [![Build](https://github.com/Ewpratten/protomask/actions/workflows/build.yml/badge.svg)](https://github.com/Ewpratten/protomask/actions/workflows/build.yml) -[![Clippy](https://github.com/Ewpratten/protomask/actions/workflows/clippy.yml/badge.svg)](https://github.com/Ewpratten/protomask/actions/workflows/clippy.yml) - -repo description - -## Installation - -This crate can be installed via `cargo` with: - -```sh -cargo install protomask -``` +A user space NAT64 implementation diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..a04114b --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,3 @@ +#![deny(unsafe_code)] + +pub mod nat;