Skip to content

Commit

Permalink
update core
Browse files Browse the repository at this point in the history
  • Loading branch information
adbenitez committed Jul 7, 2024
1 parent ccd1877 commit 6732618
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion jni/deltachat-core-rust
Submodule deltachat-core-rust updated 65 files
+4 −4 .github/workflows/ci.yml
+70 −0 CHANGELOG.md
+121 −87 Cargo.lock
+42 −24 Cargo.toml
+1 −1 deltachat-contact-tools/Cargo.toml
+173 −34 deltachat-contact-tools/src/lib.rs
+10 −10 deltachat-ffi/Cargo.toml
+12 −4 deltachat-ffi/deltachat.h
+14 −14 deltachat-jsonrpc/Cargo.toml
+19 −5 deltachat-jsonrpc/src/api.rs
+2 −2 deltachat-jsonrpc/typescript/package.json
+7 −7 deltachat-repl/Cargo.toml
+1 −1 deltachat-rpc-client/pyproject.toml
+7 −3 deltachat-rpc-client/src/deltachat_rpc_client/account.py
+5 −1 deltachat-rpc-client/src/deltachat_rpc_client/chat.py
+24 −1 deltachat-rpc-client/tests/test_iroh_webxdc.py
+22 −22 deltachat-rpc-client/tests/test_securejoin.py
+10 −10 deltachat-rpc-server/Cargo.toml
+1 −1 deltachat-rpc-server/npm-package/package.json
+8 −0 deny.toml
+1 −0 node/constants.js
+1 −0 node/lib/constants.ts
+1 −1 package.json
+0 −5 python/examples/test_examples.py
+1 −1 python/pyproject.toml
+9 −3 python/src/deltachat/testplugin.py
+15 −0 python/tests/test_0_complex_or_slow.py
+1 −1 release-date.in
+1 −1 scripts/coredeps/install-rust.sh
+1 −1 scripts/create-provider-data-rs.py
+1 −1 scripts/update-provider-database.sh
+59 −18 spec.md
+27 −18 src/chat.rs
+23 −18 src/config.rs
+7 −7 src/configure.rs
+2 −2 src/configure/auto_mozilla.rs
+1 −1 src/configure/auto_outlook.rs
+5 −18 src/contact.rs
+17 −17 src/context.rs
+4 −4 src/dehtml.rs
+3 −3 src/ephemeral.rs
+15 −14 src/imap.rs
+3 −3 src/location.rs
+46 −23 src/message.rs
+411 −407 src/mimefactory.rs
+20 −9 src/mimeparser.rs
+1 −1 src/net/http.rs
+11 −7 src/peer_channels.rs
+462 −97 src/provider/data.rs
+11 −1 src/push.rs
+33 −1 src/quota.rs
+33 −47 src/receive_imf.rs
+151 −14 src/receive_imf/tests.rs
+1 −9 src/scheduler.rs
+31 −9 src/securejoin.rs
+51 −44 src/smtp.rs
+11 −6 src/sql.rs
+30 −7 src/sql/migrations.rs
+6 −13 src/stock_str.rs
+45 −6 src/sync.rs
+1 −7 src/test_utils.rs
+21 −1 src/tests/verified_chats.rs
+1 −14 src/tools.rs
+6 −3 src/update_helper.rs
+2 −2 src/webxdc.rs

0 comments on commit 6732618

Please sign in to comment.