Caonverting to workspace

This commit is contained in:
Dave
2026-02-16 15:54:16 +00:00
parent caf293a8c4
commit b1706aaa3b
4 changed files with 3063 additions and 16 deletions

3
.gitignore vendored
View File

@@ -1,3 +1,6 @@
# Rust stuff
target
# Logs
logs
*.log

3021
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

23
Cargo.toml Normal file
View File

@@ -0,0 +1,23 @@
[workspace]
members = ["server"]
resolver = "3"
[workspace.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.21.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"
[workspace.dev-dependencies]
tempfile = "3"

View File

@@ -1,25 +1,25 @@
[package]
name = "living-spec-standalone-server"
name = "story-kit-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"
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 }
[dev-dependencies]
tempfile = "3"