24 lines
741 B
TOML
24 lines
741 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-service = { path = "../service" }
|
|
futures = { version = "0.3" }
|
|
futures-util = { version = "0.3" }
|
|
rocket = { version = "0.5.0-rc.4", 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.29.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"
|