Skip to content

Commit

Permalink
chore: simplify refresh logic (#17)
Browse files Browse the repository at this point in the history
  • Loading branch information
sagojez authored Sep 3, 2024
1 parent a497cd1 commit f81c245
Show file tree
Hide file tree
Showing 16 changed files with 293 additions and 528 deletions.
37 changes: 0 additions & 37 deletions Cargo.lock

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

11 changes: 8 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ edition = "2021"
lto = "thin"

[dependencies]
actix = "0.13.1"
actix-cors = "0.7.0"
actix-governor = "0.5.0"
actix-web = "4.5.1"
Expand All @@ -19,7 +18,10 @@ dotenvy = "0.15.7"
envconfig = "0.10.0"
futures = "0.3.30"
handlebars = "5.1.1"
integrationos-domain = { version = "4.1.6", features = ["dummy", "actix-error"] }
integrationos-domain = { version = "4.1.6", features = [
"dummy",
"actix-error",
] }
jsonwebtoken = "9.2.0"
moka = { version = "0.12.5", features = ["future"] }
mongodb = "2.8.0"
Expand All @@ -34,7 +36,10 @@ tracing = { version = "0.1.40", features = ["log"] }
tracing-actix-web = "0.7.9"
tracing-bunyan-formatter = "0.3.9"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["registry", "env-filter"] }
tracing-subscriber = { version = "0.3.18", features = [
"registry",
"env-filter",
] }

[lib]
path = "src/lib.rs"
Expand Down
2 changes: 0 additions & 2 deletions src/algebra/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,8 @@ mod parameter;
mod refresh;
mod storage;
mod token;
mod trigger;

pub use parameter::*;
pub use refresh::*;
pub use storage::*;
pub use token::*;
pub use trigger::*;
Loading

0 comments on commit f81c245

Please sign in to comment.