summaryrefslogtreecommitdiffstats
path: root/.gitignore
AgeCommit message (Collapse)Author
2021-10-27sq: add scaffolding for an integration/acceptance test suiteLars Wirzenius
Add support for an integration and acceptance test suite using the Subplot tool (https://subplot.liw.fi/). There are the initial, very simple test scenarios, to get us started. The goal is to introduce the scaffolding for integration tests, so that further tests can be added with ease later. The tests are documented and defined in sq-subplot.md. In build.rs, we call Subplot to generate test code from the markdown file. The tests are run via "cargo test", as usual. Subplot can also generate a typeset test document from sq-subplot.md, but we don't do that here.
2021-04-22make: Hide Makefile to avoid confusion.Jonas Bernoulli
- Those make targets that are useful to users are just wrappers around the respective cargo commands, which means that they are not really necessary. The additional targets are primarily of use to Sequoia developers, which also means that they are not very useful to users. - That did not keep us from prominently advertising the use of make as a recommended installation mechanism, and that in turn contributed to some false expectations and confusion. - For example, a packager used the Makefile because they thought that that is what we would like them to do. Some users found it surprising that "sudo make install" ended up running the target "build-release" even though they had already build using "build". - People who want to keep using make without every time having to specify the name of the hidden Makefile can do so by creating a symbolic link.
2019-04-12Add Cargo.lock to the repository.Justus Winter
- This enables reproducible builds of our tools and shared objects. - Fixes #9.
2018-11-24Make cargo package happy.Justus Winter
2018-09-26openpgp: Include the lalrpop-generated code.Justus Winter
- Previously, lalrpop wrote the generated code into the source directory. This changed with the new version. - Fixes #109. - Fixes 926157cc7ee13c4953dec8df9b2452fe2e3c05ae.
2018-07-20openpgp: Add a formal grammar for validating and building TPKsNeal H. Walfield
2018-07-19openpgp: add auto-gen grammar file to gitignoreKai Michaelis
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-11-24Ignore .gdb_history files.Justus Winter
2017-11-23Ignore core files.Justus Winter
2017-10-16openpgp: Add the start of a parser in nom.Neal H. Walfield