forked from tursodatabase/libsql
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (54 loc) · 1.41 KB
/
Cargo.toml
File metadata and controls
60 lines (54 loc) · 1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[workspace]
resolver = "2"
members = [
"bindings/c",
"bindings/wasm",
"bottomless",
"bottomless-cli",
"libsql",
"libsql-ffi",
"libsql-hrana",
"libsql-replication",
"libsql-server",
"libsql-sys",
"vendored/rusqlite",
"vendored/sqlite3-parser",
"xtask",
]
exclude = [
"./libsql-sqlite3/ext/crr",
"./libsql-sqlite3/ext/libsql-wasi",
"libsql-shell",
"tools/rebuild-log",
"tools/fuzz",
]
[workspace.package]
version = "0.9.24"
authors = ["the libSQL authors"]
edition = "2021"
license = "MIT"
repository = "https://github.com/tursodatabase/libsql"
[workspace.dependencies]
libsql-ffi = { path = "libsql-ffi", version = "0.9.24" }
libsql-sys = { path = "libsql-sys", version = "0.9.24", default-features = false }
libsql-hrana = { path = "libsql-hrana", version = "0.9.24" }
libsql_replication = { path = "libsql-replication", version = "0.9.24" }
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.9.24", default-features = false, features = [
"libsql-experimental",
"column_decltype",
"load_extension",
"modern_sqlite",
"functions",
"limits",
"hooks",
] }
hyper = { version = "0.14" }
tower = { version = "0.4.13" }
zerocopy = { version = "0.7.32", features = ["derive", "alloc"] }
[profile.release]
codegen-units = 1
panic = "unwind"
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"