Skip to content

Commit

Permalink
Lowercase the crate names
Browse files Browse the repository at this point in the history
  • Loading branch information
mzabaluev committed Jul 2, 2015
1 parent 0aa9543 commit d2ef930
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion fake-gen/gio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mikhail Zabaluev <[email protected]"]
license = "LGPL-2.1+"

[lib]
name = "grust_Gio_2_0"
name = "grust_gio_2_0"
path = "gio.rs"

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions fake-gen/gio/gio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#![crate_name = "grust_Gio_2_0"]
#![crate_name = "grust_gio_2_0"]
#![crate_type = "lib"]

#![allow(trivial_numeric_casts)]
Expand All @@ -31,8 +31,8 @@ extern crate bitflags;
extern crate gio_2_0_sys as ffi;
extern crate glib_2_0_sys as glib_ffi;
extern crate gobject_2_0_sys as gobject_ffi;
extern crate grust_GLib_2_0 as glib;
extern crate grust_GObject_2_0 as gobject;
extern crate grust_glib_2_0 as glib;
extern crate grust_gobject_2_0 as gobject;

use grust::enumeration;
use grust::enumeration::IntrospectedEnum as _grust_IntrospectedEnumTrait;
Expand Down
2 changes: 1 addition & 1 deletion fake-gen/glib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mikhail Zabaluev <[email protected]"]
license = "LGPL-2.1+"

[lib]
name = "grust_GLib_2_0"
name = "grust_glib_2_0"
path = "glib.rs"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion fake-gen/glib/glib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#![crate_name = "grust_GLib_2_0"]
#![crate_name = "grust_glib_2_0"]
#![crate_type = "lib"]

extern crate grust;
Expand Down
2 changes: 1 addition & 1 deletion fake-gen/gobject/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ authors = ["Mikhail Zabaluev <[email protected]"]
license = "LGPL-2.1+"

[lib]
name = "grust_GObject_2_0"
name = "grust_gobject_2_0"
path = "gobject.rs"

[dependencies]
Expand Down
4 changes: 2 additions & 2 deletions fake-gen/gobject/gobject.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

#![crate_name = "grust_GObject_2_0"]
#![crate_name = "grust_gobject_2_0"]
#![crate_type = "lib"]

extern crate grust;
extern crate grust_GLib_2_0 as glib;
extern crate grust_glib_2_0 as glib;
extern crate gobject_2_0_sys as ffi;

use grust::gtype::GType;
Expand Down
2 changes: 1 addition & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
#[macro_use]
extern crate grust;

extern crate grust_Gio_2_0 as gio;
extern crate grust_gio_2_0 as gio;

#[cfg(test)]
mod giotest;
Expand Down

0 comments on commit d2ef930

Please sign in to comment.