20 lines
525 B
TOML
20 lines
525 B
TOML
[package]
|
|
name = "jsonrpsee-example-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
jsonrpsee-example-core = { path = "../core" }
|
|
jsonrpsee = { version = "^0.8.0", features = ["full"] }
|
|
jsonrpsee-core = "0.9.0"
|
|
tokio = { version = "1.8.0", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
dotenvy = "0.15"
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|
|
anyhow = "1.0.52"
|
|
async-trait = "0.1.52"
|
|
log = { version = "0.4", features = ["std"] }
|
|
simplelog = "*"
|