22 lines
645 B
TOML
22 lines
645 B
TOML
|
|
[package]
|
||
|
|
name = "notes"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "notes.famzheng.me — 录音上传 → ASR 转写 → LLM 生成会议纪要"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
axum = { workspace = true, features = ["multipart"] }
|
||
|
|
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 }
|