* change: rename `core` crate to `service` in examples * fix(jsonrpsee-example): broken dependency
23 lines
597 B
TOML
23 lines
597 B
TOML
[package]
|
|
name = "axum-example-api"
|
|
version = "0.1.0"
|
|
authors = ["Yoshiera Huang <huangjasper@126.com>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
axum-example-service = { path = "../service" }
|
|
tokio = { version = "1.23.0", features = ["full"] }
|
|
axum = "0.6.1"
|
|
tower = "0.4.13"
|
|
tower-http = { version = "0.3.5", features = ["fs"] }
|
|
tower-cookies = "0.8.0"
|
|
anyhow = "1.0.66"
|
|
dotenvy = "0.15.6"
|
|
serde = "1.0.149"
|
|
serde_json = "1.0.89"
|
|
tera = "1.17.1"
|
|
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|