first commit

This commit is contained in:
root
2025-12-05 07:14:11 +00:00
commit 2ed4393eb9
129 changed files with 20524 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
[package]
name = "executor"
version = "0.1.0"
edition = "2024"
[dependencies]
anyhow = "1.0.100"
axum = "0.8.7"
base64 = "0.22.1"
boa_engine = "0.21.0"
boa_gc = "0.21.0"
boa_runtime = { version = "0.21.0", features = ["reqwest-blocking"] }
chrono = { version = "0.4.38", default-features = true }
clap = { version = "4.5.53", features = ["derive"] }
envy = "0.4.2"
futures-concurrency = "7.6.3"
futures-lite = "2.6.1"
memory-stats = "1.2.0"
rlimit = "0.10.2"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.132"
sqlx = { version = "0.8.6", features = ["runtime-tokio", "postgres", "json", "chrono"] }
tokio = { version = "1.40.0", features = ["rt-multi-thread"] }