Skip to content

Commit dde5bb7

Browse files
committed
rename lib; set toolchain; tag 0.0.5-a3
1 parent a986f88 commit dde5bb7

File tree

6 files changed

+25
-18
lines changed

6 files changed

+25
-18
lines changed

.github/workflows/check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616

1717
- uses: calcit-lang/[email protected]
1818
with:
19-
version: "0.8.51-a2"
19+
version: "0.8.51-a4"
2020

2121
- uses: dtolnay/rust-toolchain@stable
2222
with:

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "calcit_regex"
3-
version = "0.0.5-a2"
3+
version = "0.0.5-a3"
44
authors = ["jiyinyiyong <[email protected]>"]
55
edition = "2021"
66

77
[lib]
8-
name = "calcit_std"
8+
name = "calcit_regex"
99
path = "src/lib.rs"
1010
crate-type = ["dylib"] # Creates dynamic lib
1111

@@ -17,3 +17,7 @@ cirru_edn = "0.6.4-a2"
1717
# cirru_edn = { path = "/Users/chenyong/repo/cirru/edn.rs" }
1818
cirru_parser = "0.1.29"
1919
regex = "1.10.4"
20+
21+
# [profile.release]
22+
# debug = true
23+
# opt-level = 1

calcit.cirru

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

compact.cirru

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,31 @@
99
|re-find $ %{} :CodeEntry (:doc |)
1010
:code $ quote
1111
defn re-find (s pattern)
12-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_find" s pattern
12+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_find" s pattern
1313
|re-find-all $ %{} :CodeEntry (:doc |)
1414
:code $ quote
1515
defn re-find-all (s pattern)
16-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_find_all" s pattern
16+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_find_all" s pattern
1717
|re-find-index $ %{} :CodeEntry (:doc |)
1818
:code $ quote
1919
defn re-find-index (s pattern)
20-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_find_index" s pattern
20+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_find_index" s pattern
2121
|re-matches $ %{} :CodeEntry (:doc |)
2222
:code $ quote
2323
defn re-matches (s pattern)
24-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_matches" s pattern
24+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_matches" s pattern
2525
|re-pattern $ %{} :CodeEntry (:doc |)
2626
:code $ quote
2727
defn re-pattern (pattern)
28-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_pattern" pattern
28+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_pattern" pattern
2929
|re-replace-all $ %{} :CodeEntry (:doc |)
3030
:code $ quote
3131
defn re-replace-all (s pattern next)
32-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_replace_all" s pattern next
32+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_replace_all" s pattern next
3333
|re-split $ %{} :CodeEntry (:doc |)
3434
:code $ quote
3535
defn re-split (s pattern)
36-
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"re_split" s pattern
36+
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_regex") "\"re_split" s pattern
3737
:ns $ %{} :CodeEntry (:doc |)
3838
:code $ quote
3939
ns regex.core $ :require

rust-toolchain.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
2+
[toolchain]
3+
channel = "stable"

0 commit comments

Comments
 (0)