Skip to content

Commit 40ae372

Browse files
committedOct 6, 2023
bump sqlite-loadable
1 parent b90efaf commit 40ae372

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = ["sqlite", "sqlite-extension"]
1010
license = "MIT/Apache-2.0"
1111

1212
[dependencies]
13-
sqlite-loadable = "0.0.5"
13+
sqlite-loadable = "0.0.6-alpha.6"
1414
ulid = "1.0.0"
1515
chrono = "0.4.23"
1616

‎Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -88,13 +88,13 @@ $(TARGET_LOADABLE_RELEASE): $(prefix) $(shell find . -type f -name '*.rs')
8888
cp $(BUILT_LOCATION_RELEASE) $@
8989

9090
$(TARGET_STATIC): $(prefix) $(shell find . -type f -name '*.rs')
91-
cargo build --verbose $(CARGO_TARGET)
91+
cargo build --verbose $(CARGO_TARGET) --features=sqlite-loadable/static
9292
ls target
9393
ls target/$(target)/debug
9494
cp $(BUILT_LOCATION_STATIC) $@
9595

9696
$(TARGET_STATIC_RELEASE): $(prefix) $(shell find . -type f -name '*.rs')
97-
cargo build --verbose --release $(CARGO_TARGET)
97+
cargo build --verbose --release $(CARGO_TARGET) --features=sqlite-loadable/static
9898
cp $(BUILT_LOCATION_STATIC_RELEASE) $@
9999

100100
$(TARGET_H): sqlite-ulid.h

0 commit comments

Comments
 (0)
Please sign in to comment.