-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
39 lines (29 loc) · 904 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
38
39
[package]
name = "simdjson-rust"
version = { workspace = true }
authors = ["SunDoge <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
description = "Rust bindings for the simdjson project."
homepage = "https://crates.io/crates/simdjson-rust"
documentation = "https://docs.rs/simdjson-rust"
repository = "https://github.com/SunDoge/simdjson-rust"
readme = "README.md"
exclude = [".github/", "examples/"]
[workspace]
resolver = "2"
members = ["simdjson-sys"]
[workspace.package]
version = "0.3.0-alpha.3"
[workspace.dependencies]
simdjson-sys = { path = "simdjson-sys", version = "0.1.0-alpha.2" }
[dependencies]
thiserror = "1.0"
simdjson-sys = { workspace = true }
# serde compatibilty
serde = { version = "1", features = ["derive"], optional = true }
serde_json = { version = "1", optional = true }
[features]
default = []
# serde compatibility
serde_impl = ["serde", "serde_json"]