Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix description in README #25

Merged
merged 3 commits into from
May 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Big shout-out to its creator [Benjamin Sago](https://github.com/ogham).
# Installation

Disclaimer:
This crate is still in development, and is not yet available on crates.io
This crate is still in development.

#### We promise to keep the API stable, and not break anything that is already working in the original crate.

Expand Down
1 change: 1 addition & 0 deletions src/difference.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ pub enum Difference {

/// The before style is exactly the same as the after style, so no further
/// control codes need to be printed.
#[allow(clippy::enum_variant_names)]
NoDifference,
}

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -263,6 +263,7 @@ pub use crate::display::*;
mod write;

mod windows;
#[cfg(target_os="windows")]
pub use crate::windows::*;

mod util;
Expand Down