blob: 7322f1154e504a2dd450068547d49f4bd7e12f99 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package]
name = "locus"
version = "0.0.0"
authors = ["Fuwn <[email protected]>"]
edition = "2021"
description = "Fuwn's Gemini Capsule"
readme = "README.txt"
homepage = "https://github.com/gemrest/locus"
repository = "https://github.com/gemrest/locus"
license = "GPL-3.0-only"
keywords = ["gemini"]
categories = ["web-programming"]
# Slower builds, faster executables
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
[dependencies]
tokio = { version = "1.26.0", features = ["full"] } # Asynchronous Runtime
chrono = "0.4.19" # Date and Time
pickledb = "0.5.1" # Database
tantivy = "0.19.2" # Full-text Search Engine
windmark = { version = "0.2.0", features = [
"logger",
"auto-deduce-mime"
] } # Gemini Server Framework
reqwest = { version = "0.11.10", features = ["blocking", "json"] } # 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
dotenv = "0.15.0" # .env File Support
once_cell = "1.13.1" # Lazy Statics
[build-dependencies]
vergen = "7.0.0" # Compile-time Environment Variables
yarte = "0.15.6" # Templating Engine
anyhow = "1.0.56" # `Result`
|