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-23 11:21:12 +00:00
|
|
|
async-stream = { workspace = true }
|
|
|
|
|
async-trait = { workspace = true }
|
|
|
|
|
bytes = { workspace = true }
|
|
|
|
|
chrono = { workspace = true, features = ["serde"] }
|
|
|
|
|
eventsource-stream = { workspace = true }
|
|
|
|
|
futures = { workspace = true }
|
|
|
|
|
homedir = { workspace = true }
|
|
|
|
|
ignore = { workspace = true }
|
|
|
|
|
mime_guess = { workspace = true }
|
|
|
|
|
notify = { workspace = true }
|
2026-02-16 15:54:16 +00:00
|
|
|
poem = { workspace = true, features = ["websocket"] }
|
|
|
|
|
poem-openapi = { workspace = true, features = ["swagger-ui"] }
|
2026-02-23 11:21:12 +00:00
|
|
|
portable-pty = { workspace = true }
|
|
|
|
|
reqwest = { workspace = true, features = ["json", "stream"] }
|
|
|
|
|
rust-embed = { workspace = true }
|
2026-02-16 15:54:16 +00:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
|
|
|
serde_json = { workspace = true }
|
2026-02-23 11:21:12 +00:00
|
|
|
serde_yaml = { workspace = true }
|
|
|
|
|
strip-ansi-escapes = { workspace = true }
|
|
|
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync"] }
|
|
|
|
|
toml = { workspace = true }
|
2026-02-16 15:54:16 +00:00
|
|
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
|
|
|
|
walkdir = { workspace = true }
|
2026-02-13 12:31:36 +00:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2026-02-23 11:21:12 +00:00
|
|
|
tempfile = { workspace = true }
|
2026-02-24 00:07:20 +00:00
|
|
|
tokio-tungstenite = { workspace = true }
|