Skip to content

Commit faaee63

Browse files
committed
import args mod directly in main.rs
1 parent 3611a1f commit faaee63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rustls-cert-gen/src/lib.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
//! applications that verify chain of trust. It can be used for
55
//! whatever purpose you may need a TLS certificate-chain.
66
7-
pub mod args;
87
mod cert;
98
pub use cert::{BuildParams, Cert};
109

rustls-cert-gen/src/main.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
use rustls_cert_gen::{args, BuildParams, Cert, Result};
1+
use rustls_cert_gen::{BuildParams, Cert, Result};
2+
mod args;
23

34
fn main() -> Result<()> {
45
let opts = args::options().run();

0 commit comments

Comments
 (0)