Skip to content
This repository has been archived by the owner on Jul 4, 2023. It is now read-only.

Commit

Permalink
Update deltachat-core-rust to 1.25.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Jikstra committed Feb 21, 2020
1 parent 23c6c93 commit 7bb0e0f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deltachat-core-rust
Submodule deltachat-core-rust updated 66 files
+1 −0 .github/workflows/code-quality.yml
+47 −0 CHANGELOG.md
+430 −516 Cargo.lock
+1 −1 Cargo.toml
+1 −1 ci_scripts/run-python-test.sh
+1 −1 deltachat-ffi/Cargo.toml
+124 −27 deltachat-ffi/deltachat.h
+130 −71 deltachat-ffi/src/lib.rs
+46 −1 deltachat-ffi/src/string.rs
+28 −6 examples/repl/cmdline.rs
+4 −3 examples/repl/main.rs
+1 −2 examples/simple.rs
+7 −6 python/README.rst
+5 −8 python/install_python_bindings.py
+1 −1 python/src/deltachat/account.py
+40 −2 python/src/deltachat/chat.py
+8 −1 python/src/deltachat/const.py
+58 −19 python/tests/conftest.py
+91 −34 python/tests/test_account.py
+2 −2 python/tox.ini
+80 −0 scripts/proxy.py
+2 −2 set_core_version.py
+82 −12 spec.md
+2 −3 src/aheader.rs
+349 −75 src/chat.rs
+17 −11 src/chatlist.rs
+3 −0 src/config.rs
+14 −12 src/configure/mod.rs
+44 −3 src/constants.rs
+126 −16 src/contact.rs
+4 −4 src/context.rs
+100 −98 src/dc_receive_imf.rs
+9 −7 src/e2ee.rs
+40 −6 src/headerdef.rs
+104 −0 src/imap/client.rs
+25 −5 src/imap/idle.rs
+239 −114 src/imap/mod.rs
+3 −120 src/imap/session.rs
+1 −2 src/imex.rs
+107 −79 src/job.rs
+1 −1 src/job_thread.rs
+22 −1 src/key.rs
+3 −4 src/lib.rs
+6 −6 src/location.rs
+3 −0 src/lot.rs
+31 −5 src/message.rs
+12 −26 src/mimefactory.rs
+156 −114 src/mimeparser.rs
+5 −2 src/param.rs
+34 −12 src/peerstate.rs
+22 −5 src/pgp.rs
+60 −3 src/provider/data.rs
+2 −0 src/provider/mod.rs
+97 −0 src/qr.rs
+19 −1 src/smtp/mod.rs
+2 −0 src/smtp/send.rs
+19 −6 src/sql.rs
+1 −5 src/test_utils.rs
+1 −0 test-data/key/charlie-public.asc
+1 −0 test-data/key/charlie-secret.asc
+1 −0 test-data/key/dom-public.asc
+1 −0 test-data/key/dom-secret.asc
+1 −0 test-data/key/elena-public.asc
+1 −0 test-data/key/elena-secret.asc
+1 −0 test-data/key/fiona-public.asc
+1 −0 test-data/key/fiona-secret.asc

0 comments on commit 7bb0e0f

Please sign in to comment.