diff --git a/Cargo.toml b/Cargo.toml index 1f8f2da..d9fa79c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "htmlproc" -version = "0.2.0" +version = "0.2.1" edition = "2021" authors = ["nabbisen "] license = "Apache-2.0" diff --git a/README.md b/README.md index cf18dbb..2a3f404 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Convert paths to URLs. #### Usage ```rust -use htmlproc::path_to_url::convert; +use htmlproc::path_to_url::{convert, ConvertOptions}; let result: String = convert("link", ConvertOptions::new("target.domain")); ```