forked from serde-rs/example-format
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
33 lines (27 loc) · 802 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
32
33
[package]
name = "serde_sqlite_jsonb"
version = "0.1.0"
authors = ["Ophir Lojkine"]
categories = ["encoding"]
description = "A Serializer and Deserializer for SQLite jsonb binary format"
edition = "2021"
keywords = ["serde"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/lovasoa/serde-sqlite-jsonb"
rust-version = "1.63"
[dependencies]
serde = "1.0"
# This crate depends EITHER on serde_json OR on serde_json5.
serde_json = { version = "1", optional = true }
serde_json5 = { version = "0.1", optional = true }
[features]
default = ["serde_json"]
[dev-dependencies]
serde_derive = "1.0"
rusqlite = { version = "0.32", features = ["bundled", "blob"] }
criterion = { version = "0.5", features = ["html_reports"] }
[profile.bench]
debug = 1
[[bench]]
name = "vs_json"
harness = false