mirror of
https://github.com/aljazceru/turso.git
synced 2026-01-04 08:54:20 +01:00
29 lines
627 B
TOML
29 lines
627 B
TOML
# Copyright 2023 the Lig authors. All rights reserved. MIT license.
|
|
|
|
[package]
|
|
name = "lig_core"
|
|
version = "0.0.0"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "The Lig database library"
|
|
|
|
[lib]
|
|
name = "lig_core"
|
|
path = "lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.75"
|
|
fallible-iterator = "0.3.0"
|
|
log = "0.4.20"
|
|
sqlite3-parser = "0.11.0"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.5", features = ["html_reports", "async", "async_futures"] }
|
|
pprof = { version = "0.12.1", features = ["criterion", "flamegraph"] }
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|