From 8c4adea617696e8d959f1ae7074c2a8942e60a72 Mon Sep 17 00:00:00 2001 From: Glyn Normington Date: Tue, 15 Sep 2020 10:16:38 +0100 Subject: [PATCH] Fix project name --- Cargo.toml | 2 +- tests/cts.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 515a6eb..5ae10c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "jsonpath_ri" +name = "jsonpath_reference_implementation" version = "0.0.1" authors = ["Glyn Normington "] edition = "2018" diff --git a/tests/cts.rs b/tests/cts.rs index 801182d..9eee8da 100644 --- a/tests/cts.rs +++ b/tests/cts.rs @@ -6,7 +6,7 @@ #[cfg(test)] mod tests { - use jsonpath_ri::jsonpath; + use jsonpath_reference_implementation::jsonpath; use serde::{Deserialize, Serialize}; use std::fs; use std::panic;