Skip to content

Commit

Permalink
ABI 0.0.9 ; tag 0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tiye committed May 19, 2024
1 parent cf6638a commit 032f6a1
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

- uses: calcit-lang/[email protected]
with:
version: "0.8.51"
version: "0.8.52"

- uses: dtolnay/rust-toolchain@stable
with:
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "calcit_json"
version = "0.0.6"
version = "0.0.7"
authors = ["jiyinyiyong <[email protected]>"]
edition = "2021"

[lib]
name = "calcit_std"
name = "calcit_json"
path = "src/lib.rs"
crate-type = ["dylib"] # Creates dynamic lib


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cirru_edn = "0.6.5"
cirru_edn = "0.6.8"
cirru_parser = "0.1.29"
hex = "0.4.3"
json = "0.12.4"
6 changes: 3 additions & 3 deletions calcit.cirru

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions compact.cirru
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

{} (:package |json)
:configs $ {} (:init-fn |json.test/main!) (:reload-fn |json.test/reload!) (:version |0.0.6)
:configs $ {} (:init-fn |json.test/main!) (:reload-fn |json.test/reload!) (:version |0.0.7)
:modules $ []
:entries $ {}
:files $ {}
Expand All @@ -9,11 +9,11 @@
|parse $ %{} :CodeEntry (:doc |)
:code $ quote
defn parse (content)
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"json_parse" content
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_json") "\"json_parse" content
|stringify $ %{} :CodeEntry (:doc |)
:code $ quote
defn stringify (data ? pretty?)
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_std") "\"json_stringify" data pretty?
&call-dylib-edn (get-dylib-path "\"/dylibs/libcalcit_json") "\"json_stringify" data pretty?
:ns $ %{} :CodeEntry (:doc |)
:code $ quote
ns json.core $ :require
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::{collections::HashMap, sync::Arc};

#[no_mangle]
pub fn abi_version() -> String {
String::from("0.0.8")
String::from("0.0.9")
}

#[no_mangle]
Expand Down

0 comments on commit 032f6a1

Please sign in to comment.