Skip to content

Commit

Permalink
Metadata for publishing josephine to crates.io.
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Jeffrey committed Nov 8, 2017
1 parent dfecc26 commit 7d49a7c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "josephine"
version = "0.1.0"
version = "0.1.1"
authors = ["ajeffrey@mozilla.com"]
license = "MPL-2.0"
description = "Josephine: using JavaScript to safely manage the lifetimes of Rust data"
Expand All @@ -10,8 +10,8 @@ build = "build.rs"
[lib]

[dependencies]
josephine_derive = { path = "josephine-derive" }
js = { git = "https://github.com/servo/rust-mozjs" }
josephine_derive = "0.1.0"
mozjs = "0.1.7"
libc = "0.2.30"
log = "0.3"

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ which uses nightly features, so `josephine` also requires nightly.
In your `Cargo.toml`:
```
[dependencies]
josephine = { git = "https://github.com/asajeffrey/josephine" }
josephine = "0.1"
```
Build with `cargo +nightly build`.

Expand Down
2 changes: 1 addition & 1 deletion examples/minidom/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#![deny(unsafe_code)]

extern crate env_logger;
extern crate js;
extern crate mozjs as js;
extern crate libc;
#[macro_use] extern crate josephine;
#[macro_use] extern crate log;
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@
#![feature(generic_param_attrs)]
#![feature(dropck_eyepatch)]

extern crate js;
extern crate mozjs as js;
extern crate libc;
#[macro_use] extern crate log;

Expand Down

0 comments on commit 7d49a7c

Please sign in to comment.