-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (32 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
38 lines (32 loc) · 961 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[package]
name = "sqlite-plugin"
version = "0.10.0"
edition = "2024"
authors = ["orbitinghail <hello@orbitinghail.dev>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/orbitinghail/sqlite-plugin"
homepage = "https://github.com/orbitinghail/sqlite-plugin"
rust-version = "1.85"
description = "A Rust crate for building a custom SQLite virtual file system (VFS)."
keywords = ["sqlite", "vfs", "extension"]
[lints.clippy]
disallowed_methods = "deny"
uninlined-format-args = "warn"
doc-markdown = "warn"
map-unwrap-or = "warn"
[dev-dependencies]
rusqlite = { version = "=0.38.0", features = ["blob", "trace", "bundled"] }
log = { version = "=0.4.29", features = ["std"] }
parking_lot = "=0.12.5"
tempfile = "3"
libc = "0.2"
[build-dependencies]
bindgen = { version = "0.72", default-features = false }
[features]
default = ["static"]
static = []
dynamic = []
[[example]]
name = "memvfs"
crate-type = ["cdylib"]
required-features = ["dynamic"]