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:
parent
2335c5e97f
commit
f364d70b0f
@ -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 = "*"
|
||||
|
@ -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![],
|
||||
|
Loading…
Reference in New Issue
Block a user