25 lines
680 B
TOML
25 lines
680 B
TOML
|
|
[package]
|
||
|
|
name = "write"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "write.famzheng.me — voice/text → claude → markdown doc"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
axum = { workspace = true, features = ["ws"] }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tower = { workspace = true }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
rusqlite = { workspace = true }
|
||
|
|
reqwest = { workspace = true }
|
||
|
|
futures = { workspace = true }
|
||
|
|
tokio-stream = { workspace = true }
|
||
|
|
tokio-tungstenite = "0.24"
|
||
|
|
futures-util = "0.3"
|
||
|
|
url = "2"
|