From aa1a6c5c88a7e879c04775fcbc58ed53f262f3e1 Mon Sep 17 00:00:00 2001 From: moznion Date: Wed, 18 Nov 2020 23:49:55 +0900 Subject: [PATCH] Initial commit --- .gitignore | 1 + Cargo.lock | 5 +++++ Cargo.toml | 9 +++++++++ 3 files changed, 15 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea8c4bf --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/target diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..d317a87 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,5 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +[[package]] +name = "radius-rs" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..f0978e9 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "radius-rs" +version = "0.1.0" +authors = ["moznion "] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies]