forked from wolfsoftwaresystemsltd/WolfStack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
78 lines (64 loc) · 1.94 KB
/
Cargo.toml
File metadata and controls
78 lines (64 loc) · 1.94 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
[package]
name = "wolfstack"
version = "15.10.7"
edition = "2024"
authors = ["Wolf Software Systems Ltd"]
description = "Server management platform for the Wolf software suite"
license = "FSL-1.1-Apache-2.0"
repository = "https://github.com/wolfsoftwaresystemsltd/WolfStack"
[dependencies]
# Web framework
actix-web = { version = "4", features = ["openssl"] }
actix-files = "0.6"
actix-rt = "2"
actix-ws = "0.3"
actix-multipart = "0.7"
portable-pty = "0.8"
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
native-tls = "0.2"
futures = "0.3"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
# Async runtime
tokio = { version = "1", features = ["full"] }
# HTTP client for agent communication
reqwest = { version = "0.12", features = ["json", "rustls-tls", "multipart", "stream"], default-features = false }
# TLS
openssl = "0.10"
rustls = { version = "0.23", default-features = false, features = ["ring", "logging", "std", "tls12"] }
webpki-roots = "0.26"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# System monitoring
sysinfo = "0.32"
# CLI
clap = { version = "4", features = ["derive"] }
# Utilities
uuid = { version = "1", features = ["v4"] }
chrono = { version = "0.4", features = ["serde"] }
hostname = "0.4"
libc = "0.2"
sha2 = "0.10"
hex = "0.4"
base64 = "0.22"
urlencoding = "2"
rand = "0.8"
lettre = { version = "0.11", features = ["tokio1-rustls-tls", "smtp-transport", "builder"], default-features = false }
# S3 client (pure Rust — works on IBM Power/ppc64le, no C/C++ deps)
rust-s3 = { version = "0.35", default-features = false, features = ["tokio-rustls-tls"] }
lz4_flex = "0.11"
# Database editors
mysql_async = "0.34"
tokio-postgres = { version = "0.7", features = ["runtime"] }
async-stream = "0.3.6"
[workspace]
[profile.release]
strip = "debuginfo"
codegen-units = 1
lto = "thin"
[[bin]]
name = "wolfstack"
path = "src/main.rs"