From 1122960462ec2aaa543e15774a73d4532b509d92 Mon Sep 17 00:00:00 2001 From: Richard Newman Date: Fri, 3 Feb 2017 16:51:57 -0800 Subject: [PATCH] Re-export NamespacedKeyword and PlainSymbol out of query. r=jsantell --- query/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/query/src/lib.rs b/query/src/lib.rs index eb0c9000..bcad7d87 100644 --- a/query/src/lib.rs +++ b/query/src/lib.rs @@ -32,7 +32,8 @@ extern crate edn; -use edn::{BigInt, OrderedFloat, NamespacedKeyword, PlainSymbol}; +use edn::{BigInt, OrderedFloat}; +pub use edn::{NamespacedKeyword, PlainSymbol}; pub type SrcVarName = String; // Do not include the required syntactic '$'.