Skip to content

Commit

Permalink
update deltachat-core-rust to 'refactor: use Rust 1.77.0 support for …
Browse files Browse the repository at this point in the history
…recursion in async functions' of 'main'
  • Loading branch information
r10s committed Apr 4, 2024
1 parent a8fdbfe commit eafdfdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-ios/libraries/deltachat-core-rust
Submodule deltachat-core-rust updated 62 files
+6 −6 .github/workflows/ci.yml
+41 −3 .github/workflows/deltachat-rpc-server.yml
+7 −0 .gitignore
+81 −0 CHANGELOG.md
+10 −20 CMakeLists.txt
+166 −190 Cargo.lock
+9 −8 Cargo.toml
+1 −1 deltachat-ffi/Cargo.toml
+20 −20 deltachat-ffi/deltachat.h
+2 −16 deltachat-ffi/src/lib.rs
+4 −3 deltachat-jsonrpc/Cargo.toml
+9 −8 deltachat-jsonrpc/src/api.rs
+4 −8 deltachat-jsonrpc/src/api/types/events.rs
+0 −5 deltachat-jsonrpc/src/api/types/message.rs
+1 −1 deltachat-jsonrpc/typescript/package.json
+3 −2 deltachat-repl/Cargo.toml
+0 −8 deltachat-repl/src/cmdline.rs
+2 −7 deltachat-rpc-client/pyproject.toml
+30 −0 deltachat-rpc-client/src/deltachat_rpc_client/_utils.py
+4 −3 deltachat-rpc-client/src/deltachat_rpc_client/account.py
+9 −5 deltachat-rpc-client/src/deltachat_rpc_client/pytestplugin.py
+43 −21 deltachat-rpc-client/src/deltachat_rpc_client/rpc.py
+3 −3 deltachat-rpc-server/Cargo.toml
+1 −4 deny.toml
+131 −6 flake.lock
+86 −11 flake.nix
+2 −0 node/constants.js
+2 −0 node/lib/constants.ts
+0 −9 node/src/module.c
+1 −1 package.json
+2 −9 python/pyproject.toml
+9 −2 python/tests/test_0_complex_or_slow.py
+9 −1 python/tests/test_1_online.py
+1 −1 release-date.in
+1 −1 scripts/coredeps/install-rust.sh
+2 −0 scripts/set_core_version.py
+0 −19 src/accounts.rs
+22 −7 src/blob.rs
+67 −64 src/chat.rs
+1 −1 src/chatlist.rs
+3 −0 src/config.rs
+1 −1 src/context.rs
+8 −1 src/dehtml.rs
+1 −4 src/events/payload.rs
+76 −90 src/html.rs
+2 −6 src/imap.rs
+1 −1 src/imex.rs
+2 −2 src/location.rs
+24 −10 src/message.rs
+43 −17 src/mimefactory.rs
+35 −43 src/mimeparser.rs
+69 −7 src/net.rs
+13 −19 src/param.rs
+241 −5 src/reaction.rs
+13 −7 src/receive_imf.rs
+91 −1 src/receive_imf/tests.rs
+1 −1 src/scheduler/connectivity.rs
+0 −7 src/sql.rs
+27 −0 src/stock_str.rs
+61 −81 src/summary.rs
+9 −10 src/tools.rs
+28 −0 test-data/message/list-from.eml

0 comments on commit eafdfdc

Please sign in to comment.