Skip to content

Commit

Permalink
feat(UnQLiteVm): Add Clone trait to UnQLiteVm
Browse files Browse the repository at this point in the history
  • Loading branch information
bemyak committed May 15, 2018
1 parent 3752ef5 commit 53b977a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ target
Cargo.lock
*.bk
src/ffi.rs
rls
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "unqlite"
version = "1.4.0"
version = "1.4.1"
authors = ["Huo Linhe <[email protected]>"]
license = "MIT/Apache-2.0"
readme = "README.md"
Expand Down
1 change: 1 addition & 0 deletions src/document/doc_store.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ impl Jx9 for UnQLite {
/// Wrapper for native [`unqlite_vm`](https://unqlite.org/c_api_object.html#unqlite_vm) structure,
/// related [functions](https://unqlite.org/c_api_func.html)
/// and [configuration](https://unqlite.org/c_api/unqlite_vm_config.html).
#[derive(Clone)]
pub struct UnQLiteVm {
native: NonNull<unqlite_vm>,
executed: bool,
Expand Down
2 changes: 1 addition & 1 deletion unqlite
Submodule unqlite updated 7 files
+9 −0 .gitignore
+15 −0 .gitlab-ci.yml
+21 −0 .travis.yml
+13 −0 CHANGELOG.md
+4 −2 README.md
+60,225 −60,230 unqlite.c
+5 −5 unqlite.h

0 comments on commit 53b977a

Please sign in to comment.