Caonverting to workspace
This commit is contained in:
3
.gitignore
vendored
3
.gitignore
vendored
@@ -1,3 +1,6 @@
|
|||||||
|
# Rust stuff
|
||||||
|
target
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
logs
|
logs
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
3021
Cargo.lock
generated
Normal file
3021
Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load Diff
23
Cargo.toml
Normal file
23
Cargo.toml
Normal 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"
|
||||||
@@ -1,25 +1,25 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "living-spec-standalone-server"
|
name = "story-kit-server"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
poem = { version = "3", features = ["websocket"] }
|
poem = { workspace = true, features = ["websocket"] }
|
||||||
poem-openapi = { version = "5", features = ["swagger-ui"] }
|
poem-openapi = { workspace = true, features = ["swagger-ui"] }
|
||||||
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync"] }
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "sync"] }
|
||||||
serde = { version = "1", features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
serde_json = "1"
|
serde_json = { workspace = true }
|
||||||
reqwest = { version = "0.13.2", features = ["json", "stream"] }
|
reqwest = { workspace = true, features = ["json", "stream"] }
|
||||||
futures = "0.3"
|
futures = { workspace = true }
|
||||||
uuid = { version = "1.20.0", features = ["v4", "serde"] }
|
uuid = { workspace = true, features = ["v4", "serde"] }
|
||||||
chrono = { version = "0.4.43", features = ["serde"] }
|
chrono = { workspace = true, features = ["serde"] }
|
||||||
async-trait = "0.1.89"
|
async-trait = { workspace = true }
|
||||||
ignore = "0.4.25"
|
ignore = { workspace = true }
|
||||||
walkdir = "2.5.0"
|
walkdir = { workspace = true }
|
||||||
eventsource-stream = "0.2.3"
|
eventsource-stream = { workspace = true }
|
||||||
rust-embed = "8"
|
rust-embed = { workspace = true }
|
||||||
mime_guess = "2"
|
mime_guess = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
tempfile = "3"
|
tempfile = "3"
|
||||||
|
|||||||
Reference in New Issue
Block a user