* feat: support to okapi * fix: fmt checks * chore: rocket-okapi-example: add required schemas * chore: rocket-okapi-example: add dto * chore: rocket-okapi-example: add custom error * chore: rocket-okapi-example: add api controllers * chore: rocket-okapi-example: add notes in Readme * chore: make rocket_okapi optional * refactor: delete rocket example from rocket_example * chore: rocket-okapi-example: add base files for okapi example * chore: rocket-okapi-example: add controllers and dto * chore: rocket-okapi-example: add docs
22 lines
370 B
TOML
22 lines
370 B
TOML
[package]
|
|
name = "entity"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
[lib]
|
|
name = "entity"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
rocket = { version = "0.5.0-rc.1", features = [
|
|
"json",
|
|
] }
|
|
|
|
[dependencies.sea-orm]
|
|
path = "../../../" # remove this line in your own project
|
|
version = "^0.10.0" # sea-orm version
|
|
|
|
[dependencies.rocket_okapi]
|
|
version = "0.8.0-rc.2"
|