29 lines
700 B
TOML
29 lines
700 B
TOML
[package]
|
|
name = "aurora_print"
|
|
version = "1.0.0"
|
|
edition = "2024"
|
|
|
|
[[bin]]
|
|
name = "aurora_core"
|
|
path = "Core/main.rs"
|
|
|
|
[build-dependencies]
|
|
|
|
|
|
[dependencies]
|
|
axum = "0.7"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
|
|
tokio-stream = { version = "0.1", features = ["sync"] }
|
|
tower-http = { version = "0.5", features = ["fs"] }
|
|
crossterm = "0.27"
|
|
ratatui = "0.26"
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"] }
|
|
zip = "0.6"
|
|
sha2 = "0.10"
|
|
pathdiff = "0.2"
|
|
chromiumoxide = {version = "0.7", features = ["tokio-runtime"] }
|
|
futures = "0.3"
|
|
regex = "1.12.2"
|
|
uuid = { version = "1", features = ["v4"] }
|