0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2025-05-16 06:12:35 +00:00
Files
libsql/Cargo.toml
Piotr Sarna 4db7a4ce3d Merge pull request #815 from tursodatabase/lsnn
libsql: add an introspective libsql_server_namespace_name() function
2024-01-09 13:52:29 +00:00

65 lines
1.6 KiB
TOML

[workspace]
resolver = "2"
members = [
"libsql",
"bindings/c",
"bindings/wasm",
"libsql-sys",
"libsql-shell",
"libsql-server",
"bottomless",
"bottomless-cli",
"libsql-replication",
"libsql-ffi",
"vendored/rusqlite",
"vendored/sqlite3-parser",
"xtask",
]
exclude = [
"./libsql-sqlite3/ext/crr",
"./libsql-sqlite3/ext/libsql-wasi",
]
[profile.release]
codegen-units = 1
panic = "unwind"
[workspace.dependencies]
rusqlite = { package = "libsql-rusqlite", path = "vendored/rusqlite", version = "0.29", default-features = false, features = [
"libsql-experimental",
"column_decltype",
"load_extension",
"modern_sqlite",
"functions",
] }
# Config for 'cargo dist'
[workspace.metadata.dist]
# The preferred cargo-dist version to use in CI (Cargo.toml SemVer syntax)
cargo-dist-version = "0.7.0"
# CI backends to support
ci = ["github"]
# The installers to generate for each app
installers = ["shell", "homebrew"]
# A GitHub repo to push Homebrew formulas to
tap = "tursodatabase/homebrew-sqld"
# Target platforms to build apps for (Rust target-triple syntax)
targets = ["x86_64-unknown-linux-gnu", "aarch64-apple-darwin", "x86_64-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 = true
# Publish jobs to run in CI
pr-run-mode = "plan"
# Skip checking whether the specified configuration files are up to date
allow-dirty = ["ci"]
# The profile that 'cargo dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"