Forráskód Böngészése

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 éve
szülő
commit
88fa2c2254
1 módosított fájl, 2 hozzáadás és 2 törlés
  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"));
 }