Changes for updated rustorm.

Disable default dependencies to handle a depency collision where
mysql required a different version of openssl than something else.
This commit is contained in:
Rasmus Kaj 2016-01-30 19:57:53 +01:00
parent 2335c5e97f
commit f364d70b0f
2 changed files with 5 additions and 2 deletions

View File

@ -11,11 +11,14 @@ path = "src/main.rs"
name = "readkpa"
path = "src/readkpa.rs"
[dependencies.rustorm]
version = "*"
default-features = false
[dependencies]
nickel = "*"
env_logger = "*"
log = "*"
rustorm = "*"
chrono = "*"
rustc-serialize = "*"
typemap = "*"

View File

@ -339,7 +339,7 @@ impl IsTable for Place {
fn table(name: &str, columns: Vec<Column>) -> Table {
Table {
schema: "public".to_owned(),
schema: None,
name: name.to_owned(),
parent_table: None,
sub_table: vec![],