Be slightly more specific about mentat_core exporting Uuid.
This commit is contained in:
parent
1f0c4e3107
commit
75bcb76dd5
2 changed files with 3 additions and 3 deletions
|
@ -8,6 +8,7 @@ enum-set = { git = "https://github.com/rnewman/enum-set" }
|
||||||
lazy_static = "0.2"
|
lazy_static = "0.2"
|
||||||
num = "0.1"
|
num = "0.1"
|
||||||
ordered-float = "0.5"
|
ordered-float = "0.5"
|
||||||
|
uuid = "0.5"
|
||||||
|
|
||||||
[dependencies.edn]
|
[dependencies.edn]
|
||||||
path = "../edn"
|
path = "../edn"
|
||||||
|
|
|
@ -15,6 +15,7 @@ extern crate lazy_static;
|
||||||
extern crate ordered_float;
|
extern crate ordered_float;
|
||||||
|
|
||||||
extern crate edn;
|
extern crate edn;
|
||||||
|
extern crate uuid;
|
||||||
|
|
||||||
pub mod values;
|
pub mod values;
|
||||||
|
|
||||||
|
@ -33,9 +34,7 @@ use self::edn::{
|
||||||
NamespacedKeyword,
|
NamespacedKeyword,
|
||||||
};
|
};
|
||||||
|
|
||||||
pub use edn::{
|
pub use uuid::Uuid;
|
||||||
Uuid,
|
|
||||||
};
|
|
||||||
|
|
||||||
pub use edn::{
|
pub use edn::{
|
||||||
DateTime,
|
DateTime,
|
||||||
|
|
Loading…
Reference in a new issue