浏览代码

Merge pull request #855 from nilfit/pub-config

Make `config` constants public
Dario Nieuwenhuis 1 年之前
父节点
当前提交
b57e2f9e70
共有 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"));
 }