#ocaml #parser #file-format #opam

opam-file-rs

Parser and printer for the opam file syntax with Rust

4 releases

0.1.5 Jun 3, 2021
0.1.4 Jun 3, 2021
0.1.2 Feb 15, 2021
0.1.1 Feb 15, 2021

#1715 in Parser implementations

Download history 861/week @ 2024-07-25 355/week @ 2024-08-01 928/week @ 2024-08-08 590/week @ 2024-08-15 634/week @ 2024-08-22 1144/week @ 2024-08-29 1389/week @ 2024-09-05 767/week @ 2024-09-12 1104/week @ 2024-09-19 970/week @ 2024-09-26 484/week @ 2024-10-03 239/week @ 2024-10-10 508/week @ 2024-10-17 280/week @ 2024-10-24 391/week @ 2024-10-31 370/week @ 2024-11-07

1,564 downloads per month
Used in upstream-ontologist

MIT license

35KB
995 lines

opam-file-rs: Parser and printer for the opam file syntax with Rust

crates.io docs.rs Build Status source badge license badge

Parsing OPAM

Parse OPAM file.

use opam_file_rs;
fn main () {
  let opam = r#"
    opam-version: "2.0"
    version: "0.1.0"
    name: "opam-file-rs"
    dev-repo: "git+https://github.com/puripuri2100/opam-file-rs"
    license: "MIT"
    maintainer: "Naoki Kaneko <puripuri2100@gmail.com>"
    depends: [
      "lalrpop-util" {>= "0.19.4"}
      "thiserror" {>= "1.0.23"}
    ]
  "#;
  assert!(opam_file_rs::parse(opam).is_ok());
}

Convert to a OPAM file format.

A data structure can be converted to an OPAM file format by value::format_opam_file.

use opam_file_rs;
fn main() {
  let opam_str = r#"
    opam-version: "2.0"
    version: "0.1.0"
    name: "opam-file-rs"
    dev-repo: "git+https://github.com/puripuri2100/opam-file-rs"
    license: "MIT"
    maintainer: "Naoki Kaneko <puripuri2100@gmail.com>"
    depends: [
      "lalrpop-util" {>= "0.19.4"}
      "thiserror" {>= "1.0.23"}
    ]
  "#;
  let opam = opam_file_rs::parse(opam_str).unwrap();
  println!("{}", opam_file_rs::value::format_opam_file(opam));
}

(c) 2021 Naoki Kaneko (a.k.a. "puripuri2100")

Dependencies

~0.3–2.5MB
~42K SLoC