forked from segmentio/analytics-rust
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
40 lines (33 loc) · 821 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
40
[package]
authors = ["Dean Karn <[email protected]>","Ulysse Carion <[email protected]>"]
description = "Segment analytics client for Rust https://segment.com/docs/libraries/rust"
edition = "2018"
license = "MIT"
name = "analytics"
version = "0.2.1"
readme = "README.md"
[[bin]]
name = "analytics"
path = "src/main.rs"
required-features = ["cli"]
[dependencies]
anyhow = "1.0"
thiserror = "1.0"
serde_json = "1.0.39"
[dependencies.chrono]
features = ["serde"]
version = "0.4.6"
[dependencies.clap]
optional = true
version = "2.33"
[dependencies.reqwest]
default-features = false
features = ["json", "macos-system-configuration"]
version = "0.12.4"
[dependencies.serde]
features = ["derive"]
version = "1.0.93"
[features]
blocking = ["reqwest/blocking"]
cli = ["clap"]
default = ["blocking", "reqwest/default-tls"]