-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (33 loc) · 766 Bytes
/
Cargo.toml
File metadata and controls
41 lines (33 loc) · 766 Bytes
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
[workspace]
members = [
"crates/*"
]
resolver = "2"
# We cannot build shell and lodable and the same time
default-members = ["crates/shell", "crates/sqlite"]
[profile.dev]
panic = "abort"
strip = true
[profile.release]
panic = "abort"
strip = true
opt-level = "z"
lto = true
[profile.release_apple]
inherits = "release"
strip = false
debug = true
[profile.wasm]
inherits = "release"
[profile.wasm_asyncify]
inherits = "wasm"
[workspace.package]
version = "0.3.12"
edition = "2021"
authors = ["JourneyApps"]
keywords = ["sqlite", "powersync"]
license = "Apache-2.0"
homepage = "https://powersync.com"
repository = "https://github.com/powersync-ja/powersync-sqlite-core"
[workspace.dependencies]
sqlite_nostd = { path="./sqlite-rs-embedded/sqlite_nostd" }