-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (31 loc) · 1.05 KB
/
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
[package]
name = "platform-path"
version = "0.1.0"
authors = ["Chris Olstrom <[email protected]>"]
edition = "2021"
license = "MIT"
repository = "https://github.com/colstrom/platform-path/"
documentation = "https://docs.rs/platform-path/"
description = "CLI for identifying the platform path"
[features]
default = []
all = ["json", "https", "yaml"]
serde1 = ["serde", "camino/serde1"]
json = ["serde1", "serde_json"]
yaml = ["serde1", "serde_yaml"]
async = ["async-std"]
http = ["async", "tide"]
https = ["http", "tide-rustls"]
[dependencies]
anyhow = "1.0.56"
camino = "1.0.7"
directories = "4.0.1"
structopt = "0.3.26"
thiserror = "1.0.30"
strum = { version = "0.24.0", features = ["derive"] }
async-std = { optional = true, version = "1.10.0", features = ["attributes"] }
serde = { optional = true, version = "1.0.136", features = ["derive"] }
serde_json = { optional = true, version = "1.0.79" }
serde_yaml = { optional = true, version = "0.8.23" }
tide = { optional = true, version = "0.16.0" }
tide-rustls = { optional = true, version = "0.3.0" }