2026-02-13 12:31:36 +00:00
|
|
|
[package]
|
2026-02-16 15:54:16 +00:00
|
|
|
name = "story-kit-server"
|
2026-02-13 12:31:36 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2024"
|
|
|
|
|
build = "build.rs"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2026-02-16 15:54:16 +00:00
|
|
|
poem = { workspace = true, features = ["websocket"] }
|
|
|
|
|
poem-openapi = { workspace = true, features = ["swagger-ui"] }
|
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync"] }
|
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
|
reqwest = { workspace = true, features = ["json", "stream"] }
|
|
|
|
|
futures = { workspace = true }
|
|
|
|
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
|
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
ignore = { workspace = true }
|
|
|
|
|
walkdir = { workspace = true }
|
|
|
|
|
eventsource-stream = { workspace = true }
|
|
|
|
|
rust-embed = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
2026-02-16 19:44:29 +00:00
|
|
|
homedir = { workspace = true }
|
2026-02-19 12:54:04 +00:00
|
|
|
serde_yaml = "0.9"
|
2026-02-19 15:25:22 +00:00
|
|
|
portable-pty = { workspace = true }
|
|
|
|
|
strip-ansi-escapes = { workspace = true }
|
2026-02-16 19:44:29 +00:00
|
|
|
|
2026-02-13 12:31:36 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
|
tempfile = "3"
|