Преглед на файлове

Make `config` constants public

This allows dependent crates to use the constants directly instead of
duplicating the system of features and conversion into constants.
Nils Fitinghoff преди 1 година
родител
ревизия
88fa2c2254
променени са 1 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 2 2
      src/lib.rs

+ 2 - 2
src/lib.rs

@@ -130,7 +130,7 @@ mod parsers;
 mod rand;
 
 #[cfg(test)]
-mod config {
+pub mod config {
     #![allow(unused)]
     pub const ASSEMBLER_MAX_SEGMENT_COUNT: usize = 4;
     pub const DNS_MAX_NAME_SIZE: usize = 255;
@@ -150,7 +150,7 @@ mod config {
 }
 
 #[cfg(not(test))]
-mod config {
+pub mod config {
     #![allow(unused)]
     include!(concat!(env!("OUT_DIR"), "/config.rs"));
 }