diff options
| author | Fuwn <[email protected]> | 2022-06-12 23:17:32 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-12 23:17:32 -0700 |
| commit | 6f8a10db8b9fe35df9a1e46fc0b6ca558ee2355b (patch) | |
| tree | 1da3129b570a28d281ed820c2b133d071d0f18e7 | |
| parent | deps(windmark): bump 0.1.15 -> 0.1.16 (diff) | |
| download | locus-6f8a10db8b9fe35df9a1e46fc0b6ca558ee2355b.tar.xz locus-6f8a10db8b9fe35df9a1e46fc0b6ca558ee2355b.zip | |
refactor(cargo.toml): dependency ordering
| -rw-r--r-- | Cargo.toml | 57 |
1 files changed, 18 insertions, 39 deletions
@@ -20,44 +20,23 @@ lto = "fat" codegen-units = 1 [dependencies] -# Gemini -windmark = { version = "0.1.16", features = ["logger", "auto-deduce-mime"] } - -# Loggging -log = "0.4.16" -pretty_env_logger = "0.4.0" - -# Tokio -tokio = { version = "0.2.4", features = ["full"] } - -# Database -pickledb = "0.4.1" - -# Templates -yarte = "0.15.6" - -# RNG -rand = "0.8.5" - -# JSON -serde = "1.0.136" -serde_json = "1.0.79" - -# Search -tantivy = "0.17.0" - -# Temporary Files -tempfile = "3.3.0" - -# HTTP -reqwest = { version = "0.11.10", features = ["blocking"] } +tokio = { version = "0.2.4", features = ["full"] } # Asynchronous Runtime +pickledb = "0.4.1" # Database +tantivy = "0.17.0" # Full-text Search Engine +windmark = { version = "0.1.16", features = [ + "logger", + "auto-deduce-mime" +] } # Gemini Server Framework +reqwest = { version = "0.11.10", features = ["blocking"] } # HTTP Client +serde_json = "1.0.79" # JSON Serialization +log = "0.4.16" # Logging Macros +pretty_env_logger = "0.4.0" # Pretty Log Printing +rand = "0.8.5" # Random Number Generation +serde = "1.0.136" # Serialization +yarte = "0.15.6" # Templating Engine +tempfile = "3.3.0" # Temporary File Creation and Access [build-dependencies] -# Templates -yarte = "0.15.6" - -# Environment Variables -vergen = "7.0.0" - -# `Result` -anyhow = "1.0.56" +vergen = "7.0.0" # Compile-time Environment Variables +yarte = "0.15.6" # Templating Engine +anyhow = "1.0.56" # `Result` |