From 940cab633b16d773e34939f28611fba5c01936e6 Mon Sep 17 00:00:00 2001 From: Ian Jackson Date: Wed, 21 Jul 2021 22:23:25 +0100 Subject: [PATCH] initial commit, cargo init + edits + licence Signed-off-by: Ian Jackson --- .gitignore | 1 + Cargo.lock | 7 +++++++ Cargo.toml | 11 +++++++++++ src/bin/client.rs | 5 +++++ src/lib.rs | 4 ++++ 5 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 src/bin/client.rs create mode 100644 src/lib.rs 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..a575989 --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "hippotat" +version = "0.0.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..132fb77 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,11 @@ +# Copyright 2021 Ian Jackson and contributors to Hippotat +# SPDX-License-Identifier: AGPL-3.0-or-later +# There is NO WARRANTY. + +[package] +name = "hippotat" +version = "0.0.0" +edition = "2018" +description="Asinine HTTP-over-IP" + +[dependencies] diff --git a/src/bin/client.rs b/src/bin/client.rs new file mode 100644 index 0000000..e00cb9c --- /dev/null +++ b/src/bin/client.rs @@ -0,0 +1,5 @@ +// Copyright 2021 Ian Jackson and contributors to Hippotat +// SPDX-License-Identifier: AGPL-3.0-or-later +// There is NO WARRANTY. + +fn main() { } diff --git a/src/lib.rs b/src/lib.rs new file mode 100644 index 0000000..89c165b --- /dev/null +++ b/src/lib.rs @@ -0,0 +1,4 @@ +// Copyright 2021 Ian Jackson and contributors to Hippotat +// SPDX-License-Identifier: AGPL-3.0-or-later +// There is NO WARRANTY. + -- 2.30.2