diff --git a/Cargo.lock b/Cargo.lock index f6449505..e60eb162 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1066,8 +1066,8 @@ dependencies = [ ] [[package]] -name = "rx" -version = "0.2.0" +name = "rx-editor" +version = "0.3.0" dependencies = [ "digest 0.8.1 (registry+https://github.com/rust-lang/crates.io-index)", "directories 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 6ca43a79..67ef3d95 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] -name = "rx" -version = "0.2.0" +name = "rx-editor" +version = "0.3.0" description = "a modern, extensible pixel editor" license = "GPL-3.0-only" repository = "https://github.com/cloudhead/rx" @@ -33,3 +33,10 @@ lazy_static = "*" toml = "0.5" serde = "*" serde_derive = "*" + +[lib] +name = "rx" + +[[bin]] +name = "rx" +path = "src/main.rs" diff --git a/src/lib.rs b/src/lib.rs index 0235adbe..d7ddeb78 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -64,7 +64,7 @@ use std::rc::Rc; use std::time; /// Program version. -pub const VERSION: &str = "0.2.0"; +pub const VERSION: &str = "0.3.0"; #[global_allocator] pub static ALLOCATOR: alloc::Allocator = alloc::Allocator::new(System);