-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (25 loc) · 831 Bytes
/
Cargo.toml
File metadata and controls
27 lines (25 loc) · 831 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
27
[package]
name = "rust_jsonl_async"
version = "0.1.0"
authors = ["venantvr <venantvr@gmail.com>"]
description = "Une librairie Rust thread-safe et asynchrone pour écrire dans des fichiers JSON Lines (.jsonl)."
readme = "README.md"
license = "MIT"
edition = "2021"
[dependencies]
# Pour le logging
log = "0.4"
# Canal MPSC haute performance et borné (pour la contre-pression)
crossbeam-channel = "0.5.13"
# Pour la sérialisation/désérialisation JSON
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# SmallVec pour éviter allocations heap sur petits vecteurs
smallvec = "1.13"
[dev-dependencies]
# Une implémentation simple de 'log' pour les tests/exemples
env_logger = "0.11.3"
# Pour les fichiers temporaires dans les tests
tempfile = "3.23.0"
# Pour créer des objets JSON de test
serde_json = "1.0"