Skip to content

Commit

Permalink
chore: Fix Cargo toml
Browse files Browse the repository at this point in the history
  • Loading branch information
epage committed Oct 18, 2018
1 parent fc606b8 commit e8f2013
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ chrono = "0.4"
unicode-segmentation = "1.2"
itertools = "0.7.0"
url = "1.5"
liquid-error = { path = "liquid-error" }
liquid-value = { path = "liquid-value" }
liquid-compiler = { path = "liquid-compiler" }
liquid-interpreter = { path = "liquid-interpreter" }
liquid-error = { version = "0.16", path = "liquid-error" }
liquid-value = { version = "0.17", path = "liquid-value" }
liquid-compiler = { version = "0.17", path = "liquid-compiler" }
liquid-interpreter = { version = "0.17", path = "liquid-interpreter" }

serde = { version = "1.0", optional = true, features = ["derive"] }
clap = { version = "2.26", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions liquid-compiler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ appveyor = { repository = "johannhof/liquid-rust" }
regex = "1.0"
lazy_static = "1.0"
# Exposed in API
liquid-error = { path = "../liquid-error" }
liquid-value = { path = "../liquid-value" }
liquid-interpreter = { path = "../liquid-interpreter" }
liquid-error = { version = "0.16", path = "../liquid-error" }
liquid-value = { version = "0.17", path = "../liquid-value" }
liquid-interpreter = { version = "0.17", path = "../liquid-interpreter" }
4 changes: 2 additions & 2 deletions liquid-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ appveyor = { repository = "johannhof/liquid-rust" }
[dependencies]
itertools = "0.7.0"
# Exposed in API
liquid-error = { path = "../liquid-error" }
liquid-value = { path = "../liquid-value" }
liquid-error = { version = "0.16", path = "../liquid-error" }
liquid-value = { version = "0.17", path = "../liquid-value" }

[dev-dependencies]
serde_yaml = "0.8"
2 changes: 1 addition & 1 deletion liquid-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ num-traits = "0.2"
# Exposed in API
chrono = "0.4"
serde = { version = "1.0", features = ["derive"] }
liquid-error = { path = "../liquid-error" }
liquid-error = { version = "0.16", path = "../liquid-error" }

[dev-dependencies]
difference = "2.0"
Expand Down

0 comments on commit e8f2013

Please sign in to comment.