Skip to content

Commit 793e5e9

Browse files
committed
Bump rust-phf and fix makefile
config.stamp isn't a thing anymore
1 parent 2d59e59 commit 793e5e9

4 files changed

Lines changed: 4 additions & 5 deletions

File tree

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
/doc/
22
/build/
33
/Makefile
4-
/config.stamp

Makefile.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ PHF := $(foreach file,$(shell $(MAKE) -s -C $(PHF_DIR) print-targets),$(PHF_DIR)
1212
OPENSSL_DIR := submodules/rust-openssl
1313
OPENSSL := $(foreach file,$(shell $(MAKE) -s -C $(OPENSSL_DIR) print-target),$(OPENSSL_DIR)/$(file))
1414

15-
$(PHF): config.stamp
15+
$(PHF):
1616
$(MAKE) -C $(PHF_DIR)
1717
touch $(PHF)
1818

19-
$(OPENSSL): config.stamp
19+
$(OPENSSL):
2020
$(MAKE) -C $(OPENSSL_DIR)
2121
touch $(OPENSSL)
2222

src/test.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,7 @@ fn test_lazy_query() {
296296
let trans = conn.transaction();
297297
trans.execute("CREATE TEMPORARY TABLE foo (id INT PRIMARY KEY)", []);
298298
let stmt = trans.prepare("INSERT INTO foo (id) VALUES ($1)");
299-
let values = ~[0i32, 1, 2, 3, 4, 5];
299+
let values = vec!(0i32, 1, 2, 3, 4, 5);
300300
for value in values.iter() {
301301
stmt.execute([value as &ToSql]);
302302
}

submodules/rust-phf

Submodule rust-phf updated from aecec52 to 84aa16d

0 commit comments

Comments
 (0)