mirror of
https://github.com/GraphiteEditor/Graphite.git
synced 2025-08-04 13:30:48 +00:00

* Update to rust 2024 edition * Fixes * Clean up imports * Cargo fmt again --------- Co-authored-by: Keavon Chambers <keavon@keavon.com>
20 lines
621 B
TOML
20 lines
621 B
TOML
[package]
|
|
name = "compilation-server"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
[dependencies]
|
|
# Local dependencies
|
|
graph-craft = { path = "../graph-craft", features = ["serde"] }
|
|
gpu-compiler-bin-wrapper = { path = "../gpu-compiler/gpu-compiler-bin-wrapper" }
|
|
tokio = { workspace = true, features = ["full"] }
|
|
axum = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tempfile = { workspace = true }
|
|
anyhow = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
# Required dependencies
|
|
tower-http = { version = "0.6", features = ["cors"] }
|