forked from tanium/octobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
76 lines (66 loc) · 1.26 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
authors = ["Matt Hauck <matt.hauck@tanium.com>"]
name = "octobot"
version = "0.1.0"
edition = "2018"
[[bin]]
doc = false
name = "octobot"
path = "src/main.rs"
[[bin]]
doc = false
name = "octobot-ask-pass"
path = "src/ask-pass.rs"
[[bin]]
doc = false
name = "octobot-passwd"
path = "src/octobot-passwd.rs"
[[bin]]
doc = false
name = "ldap-check"
path = "src/ldap-check.rs"
[[bin]]
doc = false
name = "migrate-db"
path = "src/migrate-db.rs"
[dependencies]
base64 = "0.10.1"
env_logger = "0.6.1"
failure = "0.1.5"
futures = "0.1.25"
http = "0.1.16"
hyper = "0.12.25"
hyper-rustls = "0.16.1"
log = "0.4.6"
maplit = "1.0.1"
openldap = "1.2.1"
regex = "1.1.2"
ring = "0.14.6"
rpassword = "3.0.0"
rusqlite = "0.17.0"
rust-crypto = "0.2.36"
rustc-serialize = "0.3.24"
rustls = "0.15.1"
serde = "1.0.89"
serde_derive = "1.0.89"
serde_json = "1.0.39"
thread-id = "3.3.0"
time = "0.1.42"
tokio = "0.1.17"
tokio-core = "0.1.17"
tokio-rustls = "0.9.1"
toml = "0.5.0"
unidiff = "0.3.1"
url = "1.7.2"
tokio-threadpool = "0.1.12"
[dependencies.jsonwebtoken]
git = "https://github.com/matthauck/jsonwebtoken"
rev = "f4c2ab6a380bb85e931a5586cc6ca9fd8dda3ace"
[dependencies.reqwest]
version = "0.9.12"
[dev-dependencies]
tempdir = "0.3.7"
[lib]
doc = false
name = "octobot"
path = "src/lib.rs"