Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
key: check-${{ matrix.os }}
cache-bin: false
- name: Install Tauri system deps (Linux)
if: runner.os == 'Linux'
run: |
Expand All @@ -50,6 +51,7 @@ jobs:
- uses: Swatinem/rust-cache@v2
with:
key: test-${{ matrix.os }}
cache-bin: false
- name: Install Tauri system deps (Linux)
if: runner.os == 'Linux'
run: |
Expand All @@ -72,6 +74,8 @@ jobs:
with:
components: clippy
- uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- name: Install Tauri system deps
run: |
sudo apt-get update
Expand Down Expand Up @@ -102,6 +106,8 @@ jobs:
- uses: actions/checkout@v6
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
with:
cache-bin: false
- name: Install cargo-audit
run: cargo install cargo-audit --locked
- run: cargo audit
Expand Down
35 changes: 18 additions & 17 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ socket2 = "0.5"
zip = { version = "4", default-features = false, features = ["deflate"] }

# Email (SMTP + IMAP)
lettre = { version = "0.11", default-features = false, features = ["builder", "hostname", "smtp-transport", "tokio1", "tokio1-rustls-tls"] }
lettre = { version = "0.11.22", default-features = false, features = ["builder", "hostname", "smtp-transport", "tokio1", "tokio1-rustls-tls"] }
imap = "2"
native-tls = { version = "0.2", features = ["vendored"] }
mailparse = "0.16"
Expand Down
3 changes: 3 additions & 0 deletions crates/openfang-extensions/src/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,9 @@ impl IntegrationRegistry {
timeout_secs: 30,
env,
headers: Vec::new(),
allow_push_events: false,
push_queue_size: 256,
push_rate_limit_per_minute: 600,
})
})
.collect()
Expand Down
Loading
Loading