Skip to content

Commit 8ff9953

Browse files
Rename to ansi_rgb
1 parent 5cc01b9 commit 8ff9953

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "colored"
2+
name = "ansi_rgb"
33
version = "0.1.0"
44
authors = ["Matt Thomas <[email protected]>"]
55
edition = "2018"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
# colored-rs
1+
# ansi_rgb
22
ANSI escape code colors for `no_std` environments.
33

44
```rust
5-
use colored::*;
5+
use ansi_rgb::*;
66

77
fn main() {
88
println!("{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}",

src/background.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::colors::*;
1+
use crate::rgb::*;
22
use core::fmt;
33

44
pub trait Background: Sized {

src/foreground.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use crate::colors::*;
1+
use crate::rgb::*;
22
use core::fmt;
33

44
pub trait Foreground: Sized {

src/lib.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
#![no_std]
22

33
mod background;
4-
mod colors;
54
mod foreground;
5+
mod rgb;
66

77
pub use background::*;
8-
pub use colors::*;
9-
pub use foreground::*;
8+
pub use foreground::*;
9+
pub use rgb::*;

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use colored::*;
1+
use ansi_rgb::*;
22

33
fn main() {
44
println!("{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}\n{}",
File renamed without changes.

0 commit comments

Comments
 (0)