]> git.proxmox.com Git - cargo.git/commitdiff
More up to date
authorYehuda Katz <wycats@gmail.com>
Thu, 8 May 2014 20:03:21 +0000 (13:03 -0700)
committerYehuda Katz <wycats@gmail.com>
Thu, 8 May 2014 20:03:29 +0000 (13:03 -0700)
libs/hammer.rs
libs/rust-toml
src/cargo/core/manifest.rs

index 5b36a2fc5a21236b2278391c12eb91981dbc8d06..da5c02546229eee6fb4305255333515bf8954fdd 160000 (submodule)
@@ -1 +1 @@
-Subproject commit 5b36a2fc5a21236b2278391c12eb91981dbc8d06
+Subproject commit da5c02546229eee6fb4305255333515bf8954fdd
index e248cfbd6e336c3ea1a7273bea66e2fd3e3591f6..264cb656d233bb61bb5e5df157c990a41fd5a2ac 160000 (submodule)
@@ -1 +1 @@
-Subproject commit e248cfbd6e336c3ea1a7273bea66e2fd3e3591f6
+Subproject commit 264cb656d233bb61bb5e5df157c990a41fd5a2ac
index 1ce39784596095f80444e28df2145d0ca6c7f8e9..b43ca5af4c396ea8c6f2b1431d29628f91caec8e 100644 (file)
@@ -171,7 +171,7 @@ pub struct Project {
 
 #[deriving(Decodable,Encodable,Eq,Clone)]
 pub struct TomlManifest {
-    project: ~Project,
+    project: Box<Project>,
     lib: Option<~[TomlLibTarget]>,
     bin: Option<~[TomlExecTarget]>,
     dependencies: Option<HashMap<~str, ~str>>