Initial codebase structure
- Complete Gemini server implementation with logging - Add comprehensive documentation (README.md, AGENTS.md) - Implement certificate management guidelines - Add .gitignore for security and build artifacts - All unit tests passing (14/14) - Ready for production deployment
This commit is contained in:
commit
8fa30c2545
11 changed files with 730 additions and 0 deletions
20
Cargo.toml
Normal file
20
Cargo.toml
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
[package]
|
||||
name = "pollux"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
description = "A Gemini server for serving static content"
|
||||
|
||||
[dependencies]
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
rustls = "0.21"
|
||||
rustls-pemfile = "1.0"
|
||||
tokio-rustls = "0.24"
|
||||
clap = { version = "4.0", features = ["derive"] }
|
||||
path-security = "0.2"
|
||||
toml = "0.8"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
tracing = "0.1"
|
||||
tracing-subscriber = { version = "0.3", features = ["env-filter", "ansi"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
Loading…
Add table
Add a link
Reference in a new issue