- 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
20 lines
No EOL
506 B
TOML
20 lines
No EOL
506 B
TOML
[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" |