initial commit

This commit is contained in:
yggverse 2025-09-08 13:55:50 +03:00
parent fc65ac65d5
commit 1f2eb60318
8 changed files with 442 additions and 0 deletions

26
Cargo.toml Normal file
View file

@ -0,0 +1,26 @@
[package]
name = "btracker-gemini"
version = "0.1.0"
edition = "2024"
license = "MIT"
readme = "README.md"
description = "βtracker server implementation for the Gemini protocol"
keywords = ["btracker", "bittorrent", "gemini", "gemini-protocol", "server"]
categories = ["database-implementations", "network-programming", "filesystem"]
repository = "https://github.com/YGGverse/titanit"
[dependencies]
anyhow = "1.0.95"
btracker-fs = { version = "0.2.0", features = ["public"] }
chrono = "^0.4.20"
clap = { version = "4.5.30", features = ["derive"] }
log = "0.4.28"
native-tls = "0.2.14"
titanite = "0.3.2"
tracing-subscriber = { version = "0.3.20", features = ["env-filter"] }
librqbit-core = "5.0.0"
plurify = "0.2.0"
# development
[patch.crates-io]
btracker-fs = { git = "https://github.com/YGGverse/btracker-fs.git" }