From f672af6f7b0237662f42bd3c1726df94d316542e Mon Sep 17 00:00:00 2001 From: yggverse Date: Thu, 20 Feb 2025 18:03:17 +0200 Subject: [PATCH] initial commit --- .gitignore | 2 ++ Cargo.toml | 12 ++++++++++++ README.md | 10 +++++++++- src/main.rs | 3 +++ 4 files changed, 26 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 Cargo.toml create mode 100644 src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..869df07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +/target +Cargo.lock \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..c9b11a6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "titanite" +version = "0.1.0" +edition = "2021" +license = "MIT" +readme = "README.md" +description = "Client/Server Library for Gemini protocol with Titan support" +keywords = ["gemini", "titan", "gemini-protocol", "titan-protocol", "api"] +categories = ["network-programming", "parser-implementations", "parsing"] +repository = "https://github.com/YGGverse/titanite" + +[dependencies] diff --git a/README.md b/README.md index c495752..873a26e 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,10 @@ # titanite -Client/Server Library for Gemini protocol with Titan support + +Client/Server Library for [Gemini protocol](https://geminiprotocol.net/docs/protocol-specification.gmi) with Titan support + +Unlike [ggemini](https://github.com/YGGverse/ggemini) created for Glib-based applications, `titanite` written using native [Rust](https://www.rust-lang.org/) ecosystem. +This library was primarily created for [titanit](https://github.com/YGGverse/titanit), a file-sharing server. + +> [!NOTE] +> +> Project in development! \ No newline at end of file diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..4acc1aa --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + // coming soon.. +}