Skip to content

Commit bda5c9f

Browse files
committed
Fix minor version of abomonation crate
`abomonation` 0.7.3 requires a newer Rust compiler. Change Cargo.toml to require `0.7.2` instead of `0.7`.
1 parent 8313f10 commit bda5c9f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

rust/template/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ path = "./ovsdb"
1919
[dependencies]
2020
differential-dataflow = "0.9"
2121
timely = "0.9"
22-
abomonation= "0.7"
22+
abomonation= "0.7.2"
2323
serde = "1.0"
2424
serde_derive = "1.0"
2525
fnv="1.0.2"

rust/template/differential_datalog/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ itertools="^0.6"
1313

1414
[dependencies]
1515
differential-dataflow = "0.9"
16-
abomonation = "0.7"
16+
abomonation = "0.7.2"
1717
timely = "0.9"
1818
fnv="1.0.2"
1919
num = "0.2"

0 commit comments

Comments
 (0)