-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (25 loc) · 875 Bytes
/
Cargo.toml
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
[package]
name = "rusqlite_regex"
version = "0.3.0"
authors = ["xuxiaocheng <[email protected]>"]
edition = "2021"
description = "A regex extension for rusqlite"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/xuxiaocheng0201/rusqlite_regex"
documentation = "https://docs.rs/rusqlite_regex"
categories = ["database"]
keywords = ["database", "sqlite", "extension", "sqlite-extension", "regex"]
[dependencies]
rusqlite = { version = "~0.33", features = ["functions"] }
regex = "^1.11"
once_cell = { version = "^1.20", optional = true }
quick_cache = { version = "~0.6", optional = true }
[features]
default = ["cache"]
cache = ["dep:once_cell", "dep:quick_cache"]
[dev-dependencies]
rusqlite = { version = "~0.33", features = ["bundled", "functions"] }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]