Skip to content

Commit 07782b2

Browse files
committed
move crates to root
1 parent 4233371 commit 07782b2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+96
-103
lines changed

.github/workflows/golang-bindings.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,5 @@ jobs:
3939
run: cargo build
4040

4141
- name: Run Go bindings tests
42-
working-directory: libsql/bindings/go
43-
run: LD_LIBRARY_PATH=../../../target/debug go test
42+
working-directory: bindings/go
43+
run: LD_LIBRARY_PATH=../../target/debug go test

Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[workspace]
22
resolver = "2"
33
members = [
4-
"libsql/core",
5-
"libsql/bindings/c",
6-
"libsql/bindings/wasm",
7-
"libsql/libsql-sys",
4+
"libsql",
5+
"bindings/c",
6+
"bindings/wasm",
7+
"libsql-sys",
88
"libsql-shell",
99
]
1010

README-libsql.md

+36

libsql/bindings/c/Cargo.toml renamed to bindings/c/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ cbindgen = "0.24.0"
1212

1313
[dependencies]
1414
lazy_static = "1.4.0"
15-
libsql = { path = "../../core" }
15+
libsql = { path = "../../libsql" }
1616
tokio = { version = "1.29.1", features = [ "rt-multi-thread" ] }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

libsql/bindings/wasm/Cargo.toml renamed to bindings/wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ crate-type = ["cdylib"]
88

99
[dependencies]
1010
js-sys = "0.3.64"
11-
libsql = { path = "../../core", default_features = false, features = ["core"] }
11+
libsql = { path = "../../libsql", default_features = false, features = ["core"] }
1212
wasm-bindgen = "0.2"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

libsql/.gitignore

-7
This file was deleted.
File renamed without changes.

libsql/README.md

+52-16
File renamed without changes.

libsql/core/README.md

-72
This file was deleted.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)