summaryrefslogtreecommitdiffstats
path: root/net
AgeCommit message (Collapse)Author
2019-09-06Bump quickcheck to 0.9, rand to 0.7.Justus Winter
2019-08-22Bump percent-encoding to 2.1.Justus Winter
2019-08-22Bump url to 2.1.Justus Winter
2019-08-22Trim dependencies of crates 'rand' and 'quickcheck'.Justus Winter
2019-08-20net: Remove unneeded port in WKD URLjuga
- Closes #314.
2019-08-20net: Drop SKS pool in favor of keys.openpgp.org.Justus Winter
2019-08-19net: Drop the sync variant.Justus Winter
- The sync wrapper hide the async nature of the implementation, and while this may seem convenient, it may cause subtle problems if it is invoked from a different event loop. - Furthermore, 'async' is a reserved keyword in the 2018 edition, requiring awkward escaping. - Fixes #307.
2019-07-15Switch to Rust 2018.Justus Winter
2019-07-15Prepare for Rust 2018.Justus Winter
- This is the result of running `cargo fix --edition`, with some manual adjustments. - The vast majority of changes merely qualify module paths with 'crate::'. - Two instances of adding an anonymous pattern to a trait's function. - `async` is a keyword in Rust 2018, and hence it needs to be escaped (e.g. in the case of the net::r#async module). - The manual adjustments were needed due to various shortcomings of the analysis employed by `cargo fix`, e.g. unexpanded macros, procedural macros, lalrpop grammars.
2019-07-08Release 0.9.0.v0.9.0Justus Winter
2019-06-19net: Replace or remove commentsjuga
- comments that do not apply anymore. - Closes #308. - Bugfix 0.7.0.
2019-06-14Release 0.8.0.v0.8.0Justus Winter
2019-06-10net: Honor compression features.Justus Winter
2019-06-10net: Drop unused parameter.Justus Winter
2019-05-28net: Add wkd module implementing a WKD clientjuga
- Also add an async::wkd module. - Part of #251.
2019-05-15core, store, tool: Use realm instead of domain.Justus Winter
- Remove the domain parameter from core::Context. - Replace it with a realm to be passed in when opening a store. - For sq, merge store name and realm into the --store parameter. - Fixes #105.
2019-05-10Release 0.7.0.v0.7.0Justus Winter
2019-05-10openpgp: Add a new parsing mode to the Armor ReaderNeal H. Walfield
- Add a strict "mode" to the armor reader that requires an armor header line, but doesn't care what the header is. - Closes issue #254.
2019-05-07openpgp, net: Improve panic messages.Justus Winter
2019-05-03ipc: New crate.Justus Winter
2019-04-12Release 0.6.0.v0.6.0Justus Winter
- Also bump rfc2822 to 0.6.0. After all, we create tags for the versions.
2019-03-28Fix intra-workspace dependencies.Justus Winter
- Specify versions for intra-workspace dependencies in the crates that are not yet released.
2019-03-28Point to the version-specific documentation.Justus Winter
2019-03-14Release 0.5.0.v0.5.0Justus Winter
2019-02-27net: If no protocol is given, assume hkps.Justus Winter
- Also, add a test. - Fixes #201.
2019-02-27net: Typo.Justus Winter
2019-02-19Release 0.4.0.v0.4.0Justus Winter
2019-02-07net: Make Error::MalformedUri print expected protocol prefixes.Tobias Mueller
- This makes the error message more helpful, e.g. for users of "sq keyserver --server ...".
2018-12-18Release 0.3.0.v0.3.0Justus Winter
2018-12-14openpgp: Introduce trait Parse.Justus Winter
- Trait Parse introduces a uniform interface to parse packets, messages, keys, and related data structures.
2018-11-27Fix the gitlab badges.Justus Winter
2018-11-26Release 0.2.0.v0.2.0Justus Winter
2018-11-24net: Avoid using deprecated location of OsRng.v0.1.0Justus Winter
2018-11-24Rename the openpgp crate to sequoia-openpgp.Justus Winter
2018-11-24Fix mail address.Justus Winter
2018-11-24Update packaging metadata in preparation for a release.Justus Winter
2018-11-19Bump version of 'rand'.Justus Winter
2018-11-14Avoid identity slicing.Justus Winter
2018-10-30openpgp: Implement Serialize for TPK and TSK.Justus Winter
2018-10-25net: Improve IPC interface.Justus Winter
- Use our Result, communicate errors when making backends.
2018-10-17net: Compare cookies in constant time.Justus Winter
2018-10-17net: Refactor cookie comparison.Justus Winter
2018-09-21net, store: Bump version of capnp.Justus Winter
2018-08-15Bump version of failure.Justus Winter
- Also, avoid deprecated method in sq.
2018-08-13openpgp: Rework armor kind handling.Justus Winter
- Instead of having Kind::Any, use an Option<Kind> where appropriate.
2018-07-24openpgp: Support setting ASCII-armor's headersNeal H. Walfield
2018-07-10net, ffi: Bump native-tls and hyper-tls.Justus Winter
2018-06-20Warn about public functions without documentation, add missing docs.Justus Winter
2018-06-06net, store: Bump rand to "0.5" and adapt code accordingly.Justus Winter
2018-06-05net: Bump hyper to "0.12", hyper-tls to "0.2".Justus Winter