Export dependencies
ci/woodpecker/push/rustfmt Pipeline failed Details
ci/woodpecker/push/test Pipeline was successful Details

dev
Jef Roosens 2022-01-05 10:13:10 +01:00
parent c543dae46a
commit bc393b6fd6
Signed by: Jef Roosens
GPG Key ID: 955C0660072F691F
2 changed files with 14 additions and 0 deletions

View File

@ -18,6 +18,7 @@ pipeline:
- rustup component add clippy
- export RUSTC_WRAPPER="$PWD"/sccache
- export SCCACHE_S3_KEY_PREFIX=$CI_REPO_NAME
- export CARGO_HOME="$PWD/cargo"
- cargo clippy -- -D clippy::all --no-deps
- ./sccache --show-stats
secrets:
@ -44,6 +45,7 @@ pipeline:
- rustup component add clippy
- export RUSTC_WRAPPER="$PWD"/sccache
- export SCCACHE_S3_KEY_PREFIX=$CI_REPO_NAME
- export CARGO_HOME="$PWD/cargo"
- cargo test
- ./sccache --show-stats
secrets:

View File

@ -1,3 +1,15 @@
pub mod auth;
pub mod errors;
pub mod guards;
// Export dependencies for services to use
pub use base64;
pub use chrono;
pub use figment;
pub use hmac;
pub use jwt;
pub use rand;
pub use rocket;
pub use serde;
pub use sha2;
pub use uuid;