Skip to content

Commit

Permalink
Renames pestion to pest-ion.
Browse files Browse the repository at this point in the history
  • Loading branch information
almann committed Jun 8, 2021
1 parent e3bef9e commit e19daa2
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@ members = [
"partiql-irgen",
"partiql-parser",
"partiql-rewriter",
"pestion",
"pest-ion",
]
6 changes: 3 additions & 3 deletions pestion/Cargo.toml → pest-ion/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "pestion"
name = "pest-ion"
authors = ["PartiQL Team <[email protected]>"]
description = "A simple Pest grammar to Ion converter"
homepage = "https://github.com/partiql/partiql-lang-rust/pestion"
repository = "https://github.com/partiql/partiql-lang-rust/pestion"
homepage = "https://github.com/partiql/partiql-lang-rust/pest-ion"
repository = "https://github.com/partiql/partiql-lang-rust/pest-ion"
license = "Apache-2.0"
readme = "README.md"
keywords = ["parser", "peg", "pest", "ion", "cli"]
Expand Down
2 changes: 1 addition & 1 deletion pestion/README.md → pest-ion/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Pestion
# Pest to Ion

This is a simple tool and library for converting [Pest] grammars to [Ion] data format.

Expand Down
2 changes: 1 addition & 1 deletion pestion/src/lib.rs → pest-ion/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//! The easiest way to convert [Pest] grammars to Ion is from a `str` slice:
//!
//! ```
//! use pestion::*;
//! use pest_ion::*;
//! use ion_rs::value::*;
//! use ion_rs::value::reader::*;
//!
Expand Down
2 changes: 1 addition & 1 deletion pestion/src/result.rs → pest-ion/src/result.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ pub enum PestToIonError {
Ion(#[from] ion_rs::result::IonError),

/// General error from this library.
#[error("Pestion Error: {0}")]
#[error("Pest to Ion Error: {0}")]
Invalid(String),
}

Expand Down

0 comments on commit e19daa2

Please sign in to comment.