We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b044500 commit da86d13Copy full SHA for da86d13
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "compare_version"
3
-version = "2.0.0"
+version = "2.0.1"
4
readme = "README.md"
5
edition = "2024"
6
authors = ["root@ltpp.vip"]
src/lib.rs
@@ -3,13 +3,12 @@
//! A Rust library for comparing semantic versioning
//! strings and checking version compatibility.
-pub(crate) mod r#enum;
7
-pub(crate) mod r#impl;
8
-pub(crate) mod r#struct;
9
-
+mod r#enum;
+mod r#impl;
+mod r#struct;
10
#[cfg(test)]
11
mod test;
12
13
pub use {r#enum::*, r#struct::*};
14
15
-pub(crate) use std::fmt;
+use std::fmt;
0 commit comments