-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
53 lines (50 loc) · 1.51 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
[package]
name = "bear_tracks"
version = "6.0.0"
edition = "2021"
authors = ["Jayen Agrawal"]
description = "a scouting app for frc"
readme = "README.md"
repository = "https://github.com/JayAgra/bearTracks/"
license = "MIT"
build = "build.rs"
[dependencies]
actix = "0.13.1"
actix-files = "0.6.5"
actix-governor = "0.5.0"
actix-http = "3.4"
actix-identity = "0.4.0"
actix-session = { version = "~0.7", features = ["cookie-session"] }
actix-web = { version = "4.4", features = ["openssl"] }
actix-web-actors = "4.2.0"
actix-web-static-files = "4.0.1"
anyhow = { version = "~1.0" }
argon2 = "0.5.2"
async-trait = { version = "~0.1" }
base64urlsafedata = "0.1.3"
chrono = { version = "~0.4" }
dotenv = "0.15.0"
env_logger = "0.10"
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
html-escape = "0.2.13"
log = "0.4"
once_cell = { version = "~1.17" }
openssl = { version = "0.10", features = ["v110"] }
r2d2 = "0.8"
r2d2_sqlite = "0.22"
rand = "0.8.5"
regex = "1.10.3"
reqwest = { version = "0.11.22", features = ["blocking"] }
serde = { version = "1.0", features = ["derive"] }
serde_cbor_2 = { version = "0.12.0-dev" }
serde_json = "1.0"
static-files = "0.2.1"
sysinfo = "0.16.4"
tokio = { version = "1.22.0", features = [ "sync", "test-util", "macros", "net", "rt-multi-thread", "time" ] }
vader_sentiment = "0.1.1"
webauthn-rs = { version = "0.4.8", features = ["danger-allow-state-serialisation"]}
[build-dependencies]
static-files = "0.2.1"
[dependencies.rusqlite]
version = "0.29"
features = ["bundled"]