summaryrefslogtreecommitdiffstats
path: root/Cargo.toml
AgeCommit message (Collapse)Author
2017-12-21tool: New crate.Justus Winter
- A command line tool to interact with Sequoia. Useful for debugging and development.
2017-12-13Split up Sequoia.Justus Winter
- Split up into six crates: buffered-reader, openpgp, sequoia-core, sequoia-ffi, sequoia-net, and sequoia-store. - Adjust imports accordingly.
2017-12-12Retrieve and send keys using the hkps? protocol.Justus Winter
- Use hyper for http, hyper-tls for https. - Provide an easy constructor for the hkps pool. - Add ffi glue.
2017-12-06Sort dependencies.Justus Winter
2017-11-24Implement writing ASCII Armored files.Justus Winter
2017-11-23Add a foreign function interface.Justus Winter
- For now, we keep the ffi in this crate, later on we may want to move it to sequoia-ffi. - Example code how to use the library from C is added as well.
2017-11-21Disable documentation for the 'sequoia' binary.Justus Winter
- Cargo refuses to build documentation when both a library and a binary use the same name.
2017-10-28Add support for parsing compressed data packets.Neal H. Walfield
- Use the flate2 and bzip2 crates for the actual decompression.
2017-10-16openpgp: Add the start of a parser in nom.Neal H. Walfield