moved from tauri to a server with embedded UI
This commit is contained in:
25
server/Cargo.toml
Normal file
25
server/Cargo.toml
Normal file
@@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "living-spec-standalone-server"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
build = "build.rs"
|
||||
|
||||
[dependencies]
|
||||
poem = { version = "3", features = ["websocket"] }
|
||||
poem-openapi = { version = "5", features = ["swagger-ui"] }
|
||||
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
reqwest = { version = "0.13.2", features = ["json", "stream"] }
|
||||
futures = "0.3"
|
||||
uuid = { version = "1.20.0", features = ["v4", "serde"] }
|
||||
chrono = { version = "0.4.43", features = ["serde"] }
|
||||
async-trait = "0.1.89"
|
||||
ignore = "0.4.25"
|
||||
walkdir = "2.5.0"
|
||||
eventsource-stream = "0.2.3"
|
||||
rust-embed = "8"
|
||||
mime_guess = "2"
|
||||
|
||||
[dev-dependencies]
|
||||
tempfile = "3"
|
||||
Reference in New Issue
Block a user