From: Ian Jackson Date: Wed, 21 Jul 2021 21:23:25 +0000 (+0100) Subject: initial commit, cargo init + edits + licence X-Git-Tag: hippotat/1.0.0~528 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ian/git?a=commitdiff_plain;h=940cab633b16d773e34939f28611fba5c01936e6;p=hippotat.git initial commit, cargo init + edits + licence Signed-off-by: Ian Jackson --- 940cab633b16d773e34939f28611fba5c01936e6 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. +