-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (26 loc) · 696 Bytes
/
Cargo.toml
File metadata and controls
34 lines (26 loc) · 696 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
28
29
30
31
32
33
34
[package]
name = "clever-cloud-logs"
version = "0.1.0"
authors = ["Rémi Bardon <remi.bardon.dev@gmail.com>"]
edition = "2018"
[dependencies]
# Error Handling
anyhow = { version = "1.0.33", default-features = false }
# Command Line Argument Parsing
clap = "2.33.3"
# File reading & JSON parsing
directories = "3.0.1"
serde_json = "1.0.58"
# OAuth 1
oauth1 = "1.0.0"
base64 = { version = "0.13.0" }
# HTTP Client
surf = "2.0.0"
# Server Sent Event
async-sse = "4.0.1"
async-std = { version = "1.6.5", features = ["attributes"] }
http-types = { version = "2.5.0" }
# Event Messages Deserialization
serde = { version = "1.0.116", features = ["derive"] }
# Terminal Formatting
term = "0.6.1"