mirror of
https://github.com/YGGverse/titanite.git
synced 2026-03-31 09:05:31 +00:00
initial commit
This commit is contained in:
parent
279972d900
commit
f672af6f7b
4 changed files with 26 additions and 1 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/target
|
||||
Cargo.lock
|
||||
12
Cargo.toml
Normal file
12
Cargo.toml
Normal file
|
|
@ -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]
|
||||
10
README.md
10
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!
|
||||
3
src/main.rs
Normal file
3
src/main.rs
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
fn main() {
|
||||
// coming soon..
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue