Skip to content

Commit e19daa2

Browse files
committed
Renames pestion to pest-ion.
1 parent e3bef9e commit e19daa2

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,5 @@ members = [
66
"partiql-irgen",
77
"partiql-parser",
88
"partiql-rewriter",
9-
"pestion",
9+
"pest-ion",
1010
]

pestion/Cargo.toml renamed to pest-ion/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[package]
2-
name = "pestion"
2+
name = "pest-ion"
33
authors = ["PartiQL Team <[email protected]>"]
44
description = "A simple Pest grammar to Ion converter"
5-
homepage = "https://github.com/partiql/partiql-lang-rust/pestion"
6-
repository = "https://github.com/partiql/partiql-lang-rust/pestion"
5+
homepage = "https://github.com/partiql/partiql-lang-rust/pest-ion"
6+
repository = "https://github.com/partiql/partiql-lang-rust/pest-ion"
77
license = "Apache-2.0"
88
readme = "README.md"
99
keywords = ["parser", "peg", "pest", "ion", "cli"]

pestion/README.md renamed to pest-ion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Pestion
1+
# Pest to Ion
22

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

pestion/src/lib.rs renamed to pest-ion/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! The easiest way to convert [Pest] grammars to Ion is from a `str` slice:
88
//!
99
//! ```
10-
//! use pestion::*;
10+
//! use pest_ion::*;
1111
//! use ion_rs::value::*;
1212
//! use ion_rs::value::reader::*;
1313
//!

pestion/src/result.rs renamed to pest-ion/src/result.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ pub enum PestToIonError {
1919
Ion(#[from] ion_rs::result::IonError),
2020

2121
/// General error from this library.
22-
#[error("Pestion Error: {0}")]
22+
#[error("Pest to Ion Error: {0}")]
2323
Invalid(String),
2424
}
2525

0 commit comments

Comments
 (0)