forked from segmentio/analytics-rust
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCargo.toml
27 lines (24 loc) · 989 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
[package]
authors = ["Tamo <tamo@meilisearch.com", "Dean Karn <dean@segment.com>", "Ulysse Carion <ulysse@segment.com>"]
description = "Segment analytics client for Rust. Forked for Meilisearch: https://github.com/meilisearch"
edition = "2021"
license = "MIT"
repository = "https://github.com/irevoire/segment"
keywords = ["meilisearch", "analytics", "segment"]
name = "segment"
version = "0.2.5"
readme = "README.md"
[dependencies]
async-trait = "0.1.85"
time = { version = "0.3.37", features = ["serde-well-known", "formatting", "parsing"] }
reqwest = { version = "0.12.12", features = ["json"], default-features = false }
serde = { version = "1.0.217", features = ["derive"] }
serde_json = "1.0.135"
thiserror = "2.0.9"
[dev-dependencies]
tokio = { version = "1", features = ["rt", "macros"], default-features = false }
[features]
default = ["rustls-tls"]
rustls-tls = ["reqwest/rustls-tls"]
native-tls = ["reqwest/native-tls"]
native-tls-vendored = ["reqwest/native-tls-vendored"]