[[bin]]
name = "sqlite-fsr"
path = "src/main.rs"
[dependencies.anyhow]
version = "1.0.68"
[dependencies.bytes]
version = "1.3.0"
[dependencies.thiserror]
version = "1.0.38"
[lib]
name = "sqlite_fsr"
path = "src/lib.rs"
[package]
authors = ["fsr <hello@fsr.io>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
description = "A from-scratch Rust implementation of a minimal SQLite database."
edition = "2021"
license = "MIT OR Apache-2.0"
name = "sqlite-fsr"
readme = "README.md"
repository = "https://github.com/from-scratch-rust/sqlite-fsr"
rust-version = "1.80"
version = "1.0.19"
[[test]]
name = "command_dbinfo_tests"
path = "tests/command_dbinfo_tests.rs"
[[test]]
name = "command_sql_tests"
path = "tests/command_sql_tests.rs"
[[test]]
name = "command_table_tests"
path = "tests/command_table_tests.rs"
[[test]]
name = "sqlparser_tests"
path = "tests/sqlparser_tests.rs"
[[test]]
name = "tablerow_tests"
path = "tests/tablerow_tests.rs"