* Dependency version cleanup * Update build tool * Disable default features * [cli] disable default features
28 lines
745 B
TOML
28 lines
745 B
TOML
[package]
|
|
name = "rocket-example-api"
|
|
version = "0.1.0"
|
|
authors = ["Sam Samai <sam@studio2pi.com.au>"]
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
async-stream = { version = "0.3" }
|
|
async-trait = { version = "0.1" }
|
|
rocket-example-core = { path = "../core" }
|
|
futures = { version = "0.3" }
|
|
futures-util = { version = "0.3" }
|
|
rocket = { version = "0.5.0-rc.1", features = [
|
|
"json",
|
|
] }
|
|
rocket_dyn_templates = { version = "0.1.0-rc.1", features = [
|
|
"tera",
|
|
] }
|
|
serde_json = { version = "1" }
|
|
entity = { path = "../entity" }
|
|
migration = { path = "../migration" }
|
|
tokio = "1.20.0"
|
|
|
|
[dependencies.sea-orm-rocket]
|
|
path = "../../../sea-orm-rocket/lib" # remove this line in your own project and uncomment the following line
|
|
# version = "0.5.2"
|