Skip to content

Commit

Permalink
change name again
Browse files Browse the repository at this point in the history
  • Loading branch information
durch committed Dec 25, 2016
1 parent efffccb commit 7a4d644
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "simple_jwt"
name = "smpl_jwt"
version = "0.1.1"
authors = ["Drazen Urch <github@drazenur.ch>"]
description = "Very simple JWT generation lib."
Expand All @@ -10,7 +10,7 @@ license = "MIT"
documentation = "https://durch.github.io/rust-jwt"

[lib]
name = "simple_jwt"
name = "smpl_jwt"
path = "src/lib.rs"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ Generic over [serde::Serialize](https://docs.serde.rs/serde/ser/trait.Serialize.
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate simple_jwt;
extern crate smpl_jwt;
use serde::Serialize;
use simple_jwt::{Jwt, RSAKey};
use smpl_jwt::{Jwt, RSAKey};
fn main() {
#[derive(Serialize)]
Expand Down
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -117,10 +117,10 @@ impl<T: Serialize> fmt::Display for Jwt<T> {
/// #[macro_use]
/// extern crate serde_derive;
/// extern crate serde;
/// extern crate simple_jwt;
/// extern crate smpl_jwt;
///
/// use serde::Serialize;
/// use simple_jwt::{Jwt, RSAKey};
/// use smpl_jwt::{Jwt, RSAKey};
///
/// fn main() {
/// #[derive(Serialize)]
Expand Down

0 comments on commit 7a4d644

Please sign in to comment.