Skip to content

Commit

Permalink
chore(crate): re-export encoding_rs
Browse files Browse the repository at this point in the history
  • Loading branch information
j-mendez committed Nov 30, 2024
1 parent 955fe9a commit 1af97e5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "auto_encoder"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
description = "Auto encoding library"
repository = "https://github.com/spider-rs/auto-encoder"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
//! ```
pub mod detect;
pub mod meta;

pub use detect::{detect_encoding, detect_language, find_subsequence, is_binary_file};
use meta::ENCODINGS_BY_LOCALE;
pub extern crate encoding_rs;

/// Get encoding for the locale if found
pub fn encoding_for_locale(locale: &str) -> Option<&'static encoding_rs::Encoding> {
Expand Down

0 comments on commit 1af97e5

Please sign in to comment.