0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-21 10:48:14 +00:00
Files
libsql/Cargo.toml
2023-11-07 15:01:17 -05:00

54 lines
1.3 KiB
TOML

[workspace]
resolver = "2"
members = [
"libsql",
"bindings/c",
"bindings/wasm",
"libsql-sys",
"libsql-shell",
"libsql-server",
"bottomless",
"bottomless-cli",
"libsql-sys-tmp",
"libsql-replication",
"vendored/rusqlite",
"vendored/sqlite3-parser",
"xtask",
]
[profile.release]
codegen-units = 1
panic = "abort"
[workspace.dependencies]
rusqlite = { path = "vendored/rusqlite", version = "0.29", default-features = false, features = [
"libsql-experimental",
"column_decltype",
"load_extension",
"modern_sqlite"
] }
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.2.0-prerelease.6"
# CI backends to support (see 'cargo dist generate-ci')
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "libsql/homebrew-sqld"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "x86_64-apple-darwin", "aarch64-apple-darwin"]
# Publish jobs to run in CI
publish-jobs = ["homebrew"]
# Whether cargo-dist should create a Github Release or use an existing draft
create-release = false
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"