[package]
edition = "2021"
name = "ic-sqlite-vfs"
version = "0.2.1"
build = "build.rs"
exclude = [
"/.github/",
"/.icp/",
"/node_modules/",
"/target/",
"/package-lock.json",
"/package.json",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite VFS backed directly by Internet Computer stable memory"
documentation = "https://docs.rs/ic-sqlite-vfs"
readme = "README.md"
keywords = [
"sqlite",
"internet-computer",
"stable-memory",
"vfs",
"icp",
]
categories = [
"database",
"embedded",
"wasm",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/humandebri/ic-sqlite-vfs"
[features]
bench-profile = []
canister-api = []
canister-api-test-failpoints = ["canister-api"]
default = ["sqlite-bundled"]
sqlite-bundled = []
sqlite-precompiled = []
[lib]
name = "ic_sqlite_vfs"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[[test]]
name = "checksum"
path = "tests/checksum.rs"
[[test]]
name = "fts5"
path = "tests/fts5.rs"
[[test]]
name = "import_management"
path = "tests/import_management.rs"
[[test]]
name = "sqlite_features"
path = "tests/sqlite_features.rs"
[[test]]
name = "sqlite_perf_probe"
path = "tests/sqlite_perf_probe.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "strict_api"
path = "tests/strict_api.rs"
[[test]]
name = "typed_api"
path = "tests/typed_api.rs"
[[test]]
name = "vfs_roundtrip"
path = "tests/vfs_roundtrip.rs"
[dependencies.candid]
version = "0.10"
[dependencies.ic-cdk]
version = "0.20.1"
[dependencies.ic-stable-structures]
version = "0.7"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.serial_test]
version = "3"
[build-dependencies.cc]
version = "1.2"