Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change CI jobs to use stable toolchain of rust #137

Closed
kushaldas opened this issue Apr 19, 2023 · 0 comments
Closed

Change CI jobs to use stable toolchain of rust #137

kushaldas opened this issue Apr 19, 2023 · 0 comments

Comments

@kushaldas
Copy link
Owner

Right now CI is failing because of using Rust nightly.

The following is a small reproducer:

use sequoia_openpgp as openpgp;
use openpgp::cert::prelude::*;
use sequoia_openpgp::parse::Parse;
use std::io;
use std::io::prelude::*;
use std::fs::File;

fn main() {
    let mut f = File::open("hellosecret.asc").unwrap();
    let mut buffer = Vec::new();
    f.read_to_end(&mut buffer).unwrap();

        let cert = openpgp::Cert::from_bytes(&buffer).unwrap();

    println!("Hello, world!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant