-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
47 lines (42 loc) · 986 Bytes
/
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
[package]
name = "project-haystack-rs"
version = "0.1.0"
authors = ["Glenn Pierce <[email protected]>"]
edition = "2018"
[lib]
name = "libproject_haystack_rs"
path = "src/lib.rs"
[dependencies]
futures = "0.3.5"
serde_json = "1.0.56"
downcast-rs = "*"
async-trait = "0.1.41"
bytes = "*"
escape8259 = "*"
ring = "0.16.19"
stringprep = "*"
# openssl = { version = "0.10", features = ["vendored"] }
rand = "0.6.5"
data-encoding = "*"
parking_lot = "*"
http = "0.2.1"
serde = { version = "1.0.100", features = ["derive"] }
lazy_static = "*"
chrono = { version = "0.4" }
dtparse = "*"
nom = "5.0.0"
array_tool = "*"
itertools = "0.9"
nom-unicode = "^0.1"
warp = { version = "0.3", features = ["tls"] }
pretty_env_logger = "*"
log = { version = "0.4", features = ["std"] }
[dependencies.tokio]
features = ["fs", "stream", "sync", "time"]
version = "0.2"
[dev-dependencies.tokio]
features = ["macros"]
version = "0.2"
[[bin]]
name = "test_server"
path = "src/test_server.rs"