-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
49 lines (40 loc) · 1.14 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[package]
name = "sqlite-loadable"
version = "0.0.6-alpha.6"
edition = "2021"
authors = ["Alex Garcia <[email protected]>"]
description = "A framework for building SQLite extensions in Rust"
homepage = "https://github.com/asg017/sqlite-loadable-rs"
repository = "https://github.com/asg017/sqlite-loadable-rs"
keywords = ["sqlite"]
license = "MIT/Apache-2.0"
[dependencies]
sqlite3ext-sys = {version="0.0.1", path="./sqlite3ext-sys"}
sqlite-loadable-macros={version="0.0.3", path="./sqlite-loadable-macros"}
serde = {version="1.0.147", features = ["derive"]}
serde_json = "1.0.87"
bitflags = "1.3.2"
libsqlite3-sys = {version="0.26.0", optional=true, features=["bundled"]}
[dev-dependencies]
rusqlite = "0.29.0"
libsqlite3-sys = {version="0.26.0", default-features = false, features=["bundled"]}
[features]
static = ["libsqlite3-sys"]
exec = []
[lib]
doctest = false
[[example]]
name = "hello"
crate-type = ["cdylib", "staticlib"]
[[example]]
name = "series"
crate-type = ["cdylib"]
[[example]]
name = "scalar"
crate-type = ["cdylib"]
[[example]]
name = "characters"
crate-type = ["cdylib"]
[[example]]
name = "load_permanent"
crate-type = ["cdylib"]