18 lines
529 B
TOML
18 lines
529 B
TOML
|
|
[package]
|
||
|
|
name = "piano-sheet"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "piano.famzheng.me — 钢琴谱管理 / 阅读 app,多图谱面 BLOB 存 sqlite"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
axum = { workspace = true, features = ["multipart"] }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
rusqlite = { workspace = true }
|