1. Apr 12, 2023
  2. Mar 24, 2023
  3. Mar 07, 2023
  4. Feb 17, 2023
  5. Feb 14, 2023
  6. Feb 07, 2023
  7. Jan 31, 2023
  8. Jan 24, 2023
  9. Jan 09, 2023
    • Neal H. Walfield's avatar
      Update dependencies. · a26552db
      Neal H. Walfield authored
        - Update `Cargo.lock` to get the latest and greatest.  In
          particular, buffered-reader 1.1.4 and sequoia-openpgp 1.13.0.
      a26552db
  10. Nov 15, 2022
  11. Oct 21, 2022
    • Neal H. Walfield's avatar
      Use cargo and rustc 1.60 or later. · 87b6392a
      Neal H. Walfield authored
        - Don't use the `rust-toolchain` file to specify the version of
          `cargo` and `rustc` to use.  Instead use `rust-version` in
          `Cargo.toml`.
      
        - Note: this changes how we choose the tool chain: `rust-version` is
          a minimal version; `rust-toolchain` is an exact version.
      
        - Use 1.60 as that is what is currently available in Debian testing.
      
        - Closes #7, #10.
      87b6392a
    • Neal H. Walfield's avatar
      Fix URL. · 32ff90c6
      Neal H. Walfield authored
        - The repository has moved to the pEp.foundation organization.
          Update the URL.
      32ff90c6
  12. Feb 07, 2022
  13. Aug 30, 2021
  14. Aug 24, 2021
  15. Aug 23, 2021
    • Neal H. Walfield's avatar
      If session is NULL, return an error. · ff50bec2
      Neal H. Walfield authored
      ff50bec2
    • Neal H. Walfield's avatar
      Explicitly panic when out of memory. · f69b85ff
      Neal H. Walfield authored
        - Change `rust_str_to_c_str` and `rust_bytes_to_c_str_lossy` to
          return a `Result`.
      
        - Return `Error::OutOfMemory` if `malloc` fails instead of undefined
          behavior.
      
        - Update the callers to propagate the error when convenient and to
          panic explicitly when not.
      
          - Note: Rust panics if a memory allocation fails so we don't go
            too far out of the way to propagate memory allocation errors.
      f69b85ff