diff options
author | Teddy Wing | 2022-03-18 00:05:48 +0100 |
---|---|---|
committer | Teddy Wing | 2022-03-18 00:05:48 +0100 |
commit | 2cf56295d64a42ee6e4d86b1932077480bb51984 (patch) | |
tree | dab559771d3e29d32b1385b462f83e68c9485e0c /src/yaml.rs | |
parent | bd16ac71423ea5abd3d406d8f9fe579f3fec8ee0 (diff) | |
download | yaqlite-2cf56295d64a42ee6e4d86b1932077480bb51984.tar.bz2 |
yaml::sql::Yaml: Make this type `pub(crate)`
It doesn't need to be completely public.
Diffstat (limited to 'src/yaml.rs')
-rw-r--r-- | src/yaml.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yaml.rs b/src/yaml.rs index 1ad490c..77665b3 100644 --- a/src/yaml.rs +++ b/src/yaml.rs @@ -6,7 +6,7 @@ use std::collections::HashMap; mod sql; -pub use sql::*; +pub(crate) use sql::*; // TODO: Separate functions to get a list of YAML hashes, and insert hashes into |