0
0
mirror of https://github.com/tursodatabase/libsql.git synced 2024-12-15 15:39:52 +00:00
2023-12-12 09:46:49 -05:00

33 lines
687 B
TOML

[package]
name = "crsql_core"
version = "0.1.0"
edition = "2021"
authors = ["Matt Wonlaw"]
keywords = ["sqlite", "cr-sqlite", "crdt"]
license = "Apache 2"
[lib]
name = "crsql_core"
crate-type = ["rlib"]
[dependencies]
sqlite_nostd = { path="../sqlite-rs-embedded/sqlite_nostd" }
bytes = { version = "1.5", default-features = false }
num-traits = { version = "0.2.17", default-features = false }
num-derive = "0.4.1"
[dev-dependencies]
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"
[features]
test = []
libsql = []
loadable_extension = ["sqlite_nostd/loadable_extension"]
static = ["sqlite_nostd/static"]
omit_load_extension = ["sqlite_nostd/omit_load_extension"]