-
Notifications
You must be signed in to change notification settings - Fork 5
/
Cargo.toml
48 lines (45 loc) · 1.21 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
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "libstorage"
version = "0.4.93"
authors = ["Chris Holcombe <christopher_holcombe@comcast.com>", "Sravanthi Dandamudi <sravanthi_dandamudi@comcast.com>", "Rob Powers <comcastrp@gmail.com>"]
description = "Storage helper functions"
documentation = "https://github.com/Comcast/libstorage"
edition = '2018'
homepage = "https://github.com/Comcast/libstorage"
license = "Apache-2.0"
readme = "README.md"
keywords = ["storage", "netapp", "emc"]
[workspace]
members = [
"point-derive", "xml-attributes-derive"
]
[dependencies]
csv = "~1.1"
cookie = "~0.16"
chrono = "~0.4"
futures = "~0.3"
hyper = "~0.14"
influx_db_client = "~0.5"
isilon = {git = "https://github.com/cholcombe973/isilon.git", version = "~5.5", optional=true}
log = "~0.4"
native-tls = "~0.2"
nom = "~3.2"
point-derive = "~0.1"
postgres = "~0.19"
rayon = "~1.5"
reqwest = {version = "~0.11", features = ["blocking", "cookies", "native-tls"]}
serde = "~1.0"
serde_derive = "~1.0"
serde_json = "~1.0"
serde_repr = "~0.1"
tokio-core = "~0.1"
treexml = "~0.6"
uname = "~0.1"
uuid = { version = "~1", features = ["serde"] }
quick-xml = "~0.23"
xml-attributes-derive = "0.1"
xml-rs = "~0.8"
simplelog = "~0.12"
[features]
default = []
isilon-library = ["isilon"]