-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
52 lines (48 loc) · 1.6 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
[package]
name = "streamline-control"
version = "0.0.13"
authors = ["devyntk <bkeeneykid@me.com>"]
edition = "2018"
description = "An event management system for FIRST Tech Challenge Events"
license = "MIT"
repository = "https://github.com/devyntk/streamline-control/"
[package.metadata.bundle]
name = "Streamline Control"
identifier = "com.github.streamline-control"
[features]
default = ["with-gui"]
with-gui = ["druid", "self_update"]
[dependencies]
druid = { version = "0.8.2", optional = true }
tokio = { version = "1.23.1", features = ["full"] }
axum = { version = "0.6.2", features = ["macros", "ws"] }
sqlx = { version = "0.6.2", features = ["runtime-tokio-native-tls", "sqlite"] }
reqwest = { version = "0.11", features = ["native-tls-vendored", "json"] }
axum-extra = { version = "0.4.2", features = ["spa"] }
tower = "^0.4"
tower-http = { version = "^0.3", features = ["full"] }
rust-embed = "6.4.2"
mime_guess = "2"
self_update = { version = "0.34.0", optional = true }
webbrowser = "0.8.4"
port_scanner = "0.1"
app_dirs2 = "2"
flexi_logger = "0.24.2"
log = "0.4"
mime = "0.3.0"
clap = { version = "4.0", features = ["derive"] }
ctrlc = "3.1.9"
argon2 = "0.4.1"
rand_core = { version = "0.6", features = ["std"] }
anyhow = "1.0.68"
serde = { version = "1.0.150", features = ["derive", "rc"] }
serde_json = "1.0.91"
biscuit-auth = "2.2.0"
ed25519-dalek = "1.0.1"
rand_old = { package = "rand_core", features = ["std"], version = "0.5" }
flume = "0.10.14"
url = { version = "2.3.1", features = ["serde"] }
tokio-tungstenite = "0.18.0"
futures = "0.3.25"
chrono = { version = "0.4.23", features = ["serde"] }
obws = "0.10.0"