-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (64 loc) · 1.92 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (64 loc) · 1.92 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
name = "loker"
description = "Self-hosted AWS secrets manager compatible server"
version = "0.2.4"
edition = "2024"
readme = "README.md"
license = "MIT"
authors = ["Jacobtread <jacobtread@gmail.com>"]
repository = "https://github.com/jacobtread/loker"
[dependencies]
# Environment variables
dotenvy = "=0.15.7"
# HTTP server and utilities
axum = "=0.8.9"
axum-server = { version = "=0.8.0", features = ["tls-rustls"] }
http-body-util = "=0.1.3"
tower = { version = "=0.5.3" }
tower-http = { version = "=0.6.9", features = ["limit", "cors", "trace"] }
# Crypto provider
rustls = { version = "=0.23.40", features = ["aws-lc-rs"] }
# Async runtime and future utils
tokio = { version = "=1.52.2", features = ["full"] }
futures = "=0.3.32"
# Error helper
thiserror = "=2.0.18"
# Tracing
tracing = "=0.1.44"
tracing-subscriber = { version = "=0.3.23", features = ["env-filter"] }
# Bytes
bytes = "=1.11.1"
# Serialization
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.149"
# UUID v4
uuid = { version = "=1.23.1", features = ["v4", "serde"] }
# Database (With SLQCipher)
tokio-rusqlite = { version = "0.7.0", features = [
"bundled-sqlcipher-vendored-openssl",
"serde_json",
"chrono",
] }
# Precise date and time implementation
chrono = { version = "=0.4.44", features = ["serde"] }
# Random generation
rand = "=0.10.1"
# Validation
garde = { version = "=0.22.1", features = ["derive"] }
# Background task scheduling
tokio-simple-fixed-scheduler = "=0.1.0"
# AWS SigV4 signing and credentials types
aws-sigv4 = "=1.4.3"
aws-credential-types = "=1.2.14"
# Iterator utilities
itertools = "0.14.0"
[dev-dependencies]
aws-config = { version = "=1.8.16", features = ["behavior-version-latest"] }
aws-sdk-secretsmanager = { version = "=1.104.0", default-features = false, features = [
"default-https-client",
"rt-tokio",
] }
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"