Skip to content

Commit e55c4a8

Browse files
authored
Merge pull request #13 from calcit-lang/update
ABI change to 0.0.8
2 parents 5b7f3fe + 6da919c commit e55c4a8

File tree

5 files changed

+10
-281
lines changed

5 files changed

+10
-281
lines changed

Cargo.lock

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

Cargo.toml

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

@@ -13,6 +13,6 @@ crate-type = ["dylib"] # Creates dynamic lib
1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1414

1515
[dependencies]
16-
cirru_edn = "0.6.3"
16+
cirru_edn = "0.6.5"
1717
lazy_static = "1.4.0"
1818
simple-websockets = "0.1.6"

calcit.cirru

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

compact.cirru

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11

22
{} (:package |wss)
3-
:configs $ {} (:init-fn |wss.test/main!) (:reload-fn |wss.test/reload!) (:version |0.2.1)
3+
:configs $ {} (:init-fn |wss.test/main!) (:reload-fn |wss.test/reload!) (:version |0.2.5)
44
:modules $ []
55
:entries $ {}
6+
:demo $ {} (:init-fn |wss.test/demo!) (:port 6001) (:reload-fn |wss.test/reload!)
67
:files $ {}
78
|wss.core $ %{} :FileEntry
89
:defs $ {}

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ lazy_static! {
1111

1212
#[no_mangle]
1313
pub fn abi_version() -> String {
14-
String::from("0.0.7")
14+
String::from("0.0.9")
1515
}
1616

1717
#[no_mangle]

0 commit comments

Comments
 (0)