[package]
edition = "2021"
rust-version = "1.95.0"
name = "ic-sqlite-vfs"
version = "1.0.1"
build = "build.rs"
include = [
"/.cargo/config.toml",
"/.gitignore",
"/Cargo.lock",
"/Cargo.toml",
"/LICENSE-APACHE",
"/LICENSE-MIT",
"/README.md",
"/build-support/**",
"/build.rs",
"/c/include/**",
"/compat-fixtures/common/**",
"/compat-fixtures/ic-sqlite-vfs-1-0-0/Cargo.fixture.toml",
"/compat-fixtures/ic-sqlite-vfs-1-0-0/Cargo.lock",
"/compat-fixtures/ic-sqlite-vfs-1-0-0/src/lib.rs",
"/dfx.json",
"/docs/PUBLIC_API_1_0.snapshot",
"/docs/**/*.md",
"/icp.yaml",
"/proofs/**/*.md",
"/proofs/**/*.rs",
"/rust-toolchain.toml",
"/scripts/**",
"/spec/**/*.json",
"/spec/**/*.toml",
"/src/**/*.did",
"/src/**/*.rs",
"/tests/**/*.mjs",
"/tests/**/*.rs",
"/vendor/sqlite/bindings/**",
"/vendor/sqlite/build-flags.txt",
"/vendor/sqlite/src/**",
"/vendor/sqlite/wasm32-unknown-unknown/lib/libsqlite3.a",
]
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 = "memory_manager_compat"
path = "tests/memory_manager_compat.rs"
[[test]]
name = "memory_manager_corruption"
path = "tests/memory_manager_corruption.rs"
[[test]]
name = "public_api"
path = "tests/public_api.rs"
[[test]]
name = "sqlite_features"
path = "tests/sqlite_features.rs"
[[test]]
name = "sqlite_perf_probe"
path = "tests/sqlite_perf_probe.rs"
[[test]]
name = "stable_memory"
path = "tests/stable_memory.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.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dev-dependencies.proptest]
version = "1.11.0"
features = ["std"]
default-features = false
[dev-dependencies.serial_test]
version = "3"
[dev-dependencies.upstream-ic-stable-structures]
version = "=0.7.0"
package = "ic-stable-structures"
[build-dependencies.cc]
version = "1.2"