0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-11-13 14:29:24 +00:00
libsql/xtask/Cargo.toml
Lucio Franco 20541ea427 Add xtask support for builds
This commit adds basic xtask support for building the libsql C library.
This tool allows us to use cargo and rust as the build system. The xtask
system is based off of https://github.com/matklad/cargo-xtask.

This tool provides two commands so far:

- `cargo xtask build` that will build `libsql-sqlite3`.
- `cargo xtask sim-tests` that will run the simulation test suite for
  `libsql-server.
2023-10-31 09:22:30 -04:00

11 lines
203 B
TOML

[package]
name = "xtask"
version = "0.1.0"
edition = "2021"
publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1"