-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 815 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 815 Bytes
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
[package]
name = "asyncjsonstream"
version = "0.1.0"
edition = "2021"
rust-version = "1.74"
description = "Async JSON stream reader for selective parsing of large payloads"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/singular-labs/async-json-streamer"
homepage = "https://github.com/singular-labs/async-json-streamer"
documentation = "https://docs.rs/asyncjsonstream"
keywords = ["json", "async", "streaming", "stream"]
categories = ["asynchronous", "encoding"]
[dependencies]
bytes = "1.4.0"
serde_json = "1.0.96"
thiserror = "2.0.11"
tokio = { version = "1.34.0", features = ["fs", "io-util", "macros", "rt-multi-thread"] }
[dev-dependencies]
assert_matches = "1.5.0"
serde = { version = "1.0.199", features = ["derive"] }
[package.metadata.docs.rs]
all-features = true