24 lines
690 B
TOML
24 lines
690 B
TOML
[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"] }
|