-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
93 lines (75 loc) · 1.95 KB
/
Copy pathCargo.toml
File metadata and controls
93 lines (75 loc) · 1.95 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
83
84
85
86
87
88
89
90
91
92
93
[workspace]
resolver = "2"
members = [
"crates/ployer-core",
"crates/ployer-db",
"crates/ployer-docker",
"crates/ployer-proxy",
"crates/ployer-git",
"crates/ployer-server",
"crates/ployer-api",
"crates/ployer-templates",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
futures-util = "0.3"
# Web framework
axum = { version = "0.7", features = ["ws"] }
tower-http = { version = "0.5", features = ["cors", "compression-gzip", "fs", "trace"] }
# Database
sqlx = { version = "0.7", features = ["runtime-tokio", "sqlite", "chrono", "uuid"] }
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# Auth
jsonwebtoken = "9"
argon2 = "0.5"
# Docker
bollard = "0.16"
# HTTP client
reqwest = { version = "0.12", features = ["json"] }
# SSH
russh = "0.44"
# Git
git2 = "0.19"
# Crypto
aes-gcm = "0.10"
rand = "0.8"
base64 = "0.21"
rsa = { version = "0.9", features = ["pem"] }
ssh-key = { version = "0.6", features = ["rsa"] }
sha2 = "0.10"
hmac = "0.12"
# Embedding
rust-embed = { version = "8", features = ["mime-guess"] }
# System info
sysinfo = "0.31"
# CLI
clap = { version = "4", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
# Config
toml = "0.8"
# Utils
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
thiserror = "1"
tar = "0.4"
hex = "0.4"
governor = "0.6"
# Internal crates
ployer-core = { path = "crates/ployer-core" }
ployer-db = { path = "crates/ployer-db" }
ployer-docker = { path = "crates/ployer-docker" }
ployer-proxy = { path = "crates/ployer-proxy" }
ployer-git = { path = "crates/ployer-git" }
ployer-server = { path = "crates/ployer-server" }
ployer-api = { path = "crates/ployer-api" }
ployer-templates = { path = "crates/ployer-templates" }