-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
32 lines (29 loc) · 836 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
[package]
name = "team_heist_tactics"
version = "0.1.1"
authors = ["Daniel Porteous <danielporteous1@gmail.com>", "Kelly McBride <kemcbride28@gmail.com>", "Fatema Boxwala <fatemabox@gmail.com>"]
edition = "2018"
# Only rebuild if related files change.
include = ["src/**/*", "/build.rs", "Cargo.toml", "Cargo.lock"]
readme = "README.md"
repository = "https://github.com/banool/team_heist_tactics"
publish = false
[dependencies]
actix = "*"
actix-files = "*"
actix-rt = "*"
actix-web = "*"
actix-web-actors = "*"
anyhow = "*"
base64 = "*"
env_logger = "*"
lazy_static = "*"
log = "*"
prost = { git = "https://github.com/fdeantoni/prost", branch = "meta" }
prost-types = "0.6"
rand = "*"
serde = "*"
serde_json = "*"
serde_derive = "*"
[build-dependencies]
prost-build = { git = "https://github.com/fdeantoni/prost", branch = "meta" }