forked from tanium/octobot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (58 loc) · 1.03 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
[package]
authors = ["Matt Hauck <[email protected]>"]
name = "octobot"
version = "0.1.0"
[[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.7.0"
env_logger = "^0.4"
error-chain = "0.11.0"
futures = "0.1.16"
hyper = "^0.11"
hyper-rustls = "0.11.0"
ldap3 = "0.5.1"
log = "0.3.7"
maplit = "0.1.5"
regex = "^0.2"
ring = "^0.12"
rpassword = "^1.0"
rusqlite = "0.12.0"
rust-crypto = "0.2.36"
rustc-serialize = "^0.3"
rustls = "0.11.0"
serde = "^1.0"
serde_derive = "^1.0"
serde_json = "^1.0"
thread-id = "^3.0"
threadpool = "^1.0"
time = "^0.1"
tokio-core = "0.1.10"
tokio-proto = "0.1.1"
tokio-rustls = "0.4.0"
toml = "^0.4"
unidiff = "0.2.0"
url = "^1.5"
[dev-dependencies]
tempdir = "0.3.5"
[lib]
name = "octobot"
path = "src/lib.rs"