17 lines
461 B
TOML
17 lines
461 B
TOML
|
|
[package]
|
||
|
|
name = "simpleasm"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
license.workspace = true
|
||
|
|
authors.workspace = true
|
||
|
|
description = "asm.famzheng.me — 汇编教学小游戏,玩家进度持久化在 sqlite"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
cube-core = { path = "../../crates/cube-core" }
|
||
|
|
axum = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
rusqlite = { workspace = true }
|