-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (28 loc) · 791 Bytes
/
Cargo.toml
File metadata and controls
34 lines (28 loc) · 791 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 = "raystack"
version = "0.12.0"
authors = ["a-mackay <amackayfoss@outlook.com>"]
license = "MIT"
edition = "2018"
repository = "https://github.com/a-mackay/raystack"
description = "WIP SkySpark client"
keywords = ["skyspark", "haystack"]
[features]
grid_csv = ["csv"]
[dependencies]
base64 = "0.13"
chrono = "0.4"
chrono-tz = "0.6"
csv = { version = "1.1", optional = true }
hmac = "0.11"
pbkdf2 = { version = "0.9", default-features = false }
raystack_core = { version = "0.5", features = ["json"] }
rand = "0.8"
rand_chacha = "0.3"
reqwest = { version = "0.11", default-features = false, features = ["default-tls", "json"] }
sha2 = "0.9"
serde_json = "1"
thiserror = "1"
url = "2"
[dev-dependencies]
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }