-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (37 loc) · 914 Bytes
/
Cargo.toml
File metadata and controls
44 lines (37 loc) · 914 Bytes
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
[package]
name = "black-box"
version = "0.1.0"
edition = "2024"
[dependencies]
# Core utilities
anyhow = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1.3"
time = { version = "0.3", features = ["serde", "formatting"] }
glob = "0.3"
clap = { version = "4", features = ["derive"] }
flate2 = "1.0"
reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] }
chrono = "0.4"
libc = "0.2"
memmap2 = "0.9"
inotify = "0.10"
# Async runtime and web framework
tokio = { version = "1", features = ["full"] }
tokio-stream = { version = "0.1", features = ["sync"] }
actix = "0.13"
actix-web = "4"
actix-web-actors = "4"
actix-files = "0.6"
futures-util = "0.3"
# Security
bcrypt = "0.15"
base64 = "0.22"
# Channels for sync/async bridge
crossbeam-channel = "0.5"
# Configuration
toml = "0.8"
[dev-dependencies]
tempfile = "3"
actix-rt = "2"