forked from katyo/neon-serde
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
37 lines (31 loc) · 878 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
34
35
36
37
[package]
name = "neon-serde2"
version = "0.8.0"
authors = [
"Damir Jelić <poljar@termina.org.uk>",
"Gabriel Castro <dev@GabrielCastro.ca>",
"Muhammad Hamza <mhamza@formbird.com>"
]
description = "Easily serialize object for use with neon"
license = "MIT"
repository = "https://github.com/formbird/neon-serde"
readme = "readme.md"
edition = "2021"
[lib]
name = "neon_serde"
[dependencies]
serde = "1.0"
thiserror = "1.0.40"
num = { version = "0.4.0", default-features = false }
chrono = { version = "0.4.24", features = ["serde"], optional = true }
[dependencies.neon]
version = "0.10.1"
default-features = false
features = ["default-panic-hook", "napi-6", "try-catch-api", "event-queue-api"]
[dev-dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11.9"
[features]
dates = ["dep:chrono"]
[workspace]
members = ["tests/native"]