1

Prepping for first releases

This commit is contained in:
Evan Pratten 2023-07-17 11:17:05 -04:00
parent de2eb6efed
commit 9e0f346f4c
3 changed files with 7 additions and 13 deletions

View File

@ -3,9 +3,10 @@ name = "protomask"
version = "0.1.0"
authors = ["Evan Pratten <ewpratten@gmail.com>"]
edition = "2021"
description = "<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 = []

View File

@ -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

3
src/lib.rs Normal file
View File

@ -0,0 +1,3 @@
#![deny(unsafe_code)]
pub mod nat;