Skip to content

Commit

Permalink
update rsa
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenfiszel committed Dec 15, 2024
1 parent 278ab4b commit 618b4a5
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 119 deletions.
147 changes: 32 additions & 115 deletions backend/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 backend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ lazy_static = "1.4.0"
serde_derive = "1.0.147"
const_format = { version = "0.2", features = ["rust_1_64", "rust_1_51"] }
dyn-iter = "0.2.0"
rsa = "0.7.2"
rsa = "^0"
async-stripe = { version = "0.39.1", features = [
"runtime-tokio-hyper",
"checkout",
Expand Down
2 changes: 1 addition & 1 deletion backend/ee-repo-ref.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
6e8d5ca66c0912d3bbd0c3499d919854eafc5366
1bed5d2a8b858fa345e2401721ddc90a5597280a
3 changes: 3 additions & 0 deletions backend/windmill-api/src/auth.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ use std::sync::{
atomic::{AtomicI64, AtomicU64, Ordering},
Arc,
};
#[cfg(feature = "enterprise")]
use tokio::sync::RwLock;

use windmill_common::{
auth::{get_folders_for_user, get_groups_for_user, JWTAuthClaims, JWT_SECRET},
users::{COOKIE_NAME, SUPERADMIN_SECRET_EMAIL},
Expand Down
2 changes: 0 additions & 2 deletions backend/windmill-api/src/users.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,6 @@ use regex::Regex;
use serde::{Deserialize, Serialize};
use sqlx::FromRow;
use time::OffsetDateTime;
#[cfg(feature = "enterprise")]
use tokio::sync::RwLock;
use tower_cookies::{Cookie, Cookies};
use tracing::Instrument;
use windmill_audit::audit_ee::{audit_log, AuditAuthor};
Expand Down

0 comments on commit 618b4a5

Please sign in to comment.