Skip to content

Commit

Permalink
trying to resolve an error
Browse files Browse the repository at this point in the history
  • Loading branch information
AnthonyMichaelTDM committed Jan 29, 2023
1 parent 0733bc7 commit 6d3ea51
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 7 deletions.
29 changes: 26 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion create-rust-app/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ md5 = { optional=true, version="0.7.0" }
base64 = { optional=true, version="0.21.0" }

# plugin_utoipa dependencies
utoipa = { optional=true, version="2", features=["actix_extras", "chrono", "openapi_extensions"] }
utoipa = { optional=true, version="3", features=["actix_extras", "chrono", "openapi_extensions"] }
utoipa-swagger-ui = { optional=true, version="3", features=["actix-web"]}

##
Expand Down
4 changes: 1 addition & 3 deletions create-rust-app/src/auth/endpoints/mod.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
#[cfg(feature = "backend_actix-web")]
mod service_actixweb;
#[cfg(feature = "backend_actix-web")]
pub use service_actixweb::endpoints;
#[cfg(feature = "backend_actix-web")]
pub use service_actixweb::ApiDoc;
pub use service_actixweb::{endpoints, ApiDoc};

#[cfg(feature = "backend_poem")]
mod service_poem;
Expand Down

0 comments on commit 6d3ea51

Please sign in to comment.