forked from Redrield/Conductor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
59 lines (51 loc) · 1.42 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
[package]
name = "conductor"
version = "0.1.0"
authors = ["Kaitlyn Kenwell <[email protected]>"]
edition = "2018"
description = "A cross-platform driver station for FRC robots"
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
web-view = { git = "https://github.com/Boscop/web-view#82d7cbc.git" }
lazy_static = "1.4.0"
rust-embed = "5.5.1"
serde = { version = "1.0.106", features = ["derive"] }
serde_json = "1.0.51"
ds = "1.2.4"
gilrs = "0.7.4"
actix-web = "2.0.0"
actix-rt = "1.1.0"
mime_guess = "2.0.3"
futures = "0.3.4"
env_logger = "0.7.1"
actix-web-actors = "2.0.0"
actix = "0.9.0"
log = "0.4.11"
conquer-once = "0.2.1"
uuid = { version = "0.8.1", features = ["v4"] }
confy = "0.4.0"
autopilot = "0.4.0"
tinyfiledialogs = "3.3.0"
human-panic = "1.0.3"
glfw = "0.41.0"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2.74"
x11 = { version = "2.18.2", features = ["xlib", "xinput", "xrandr"] }
[target.'cfg(target_os = "macos")'.dependencies]
libc = "0.2.74"
core-graphics = "0.21.0"
objc = "0.2.7"
cocoa = "0.23.0"
block = "0.1.6"
core-foundation = "0.9.0"
[package.metadata.bundle]
name = "Conductor"
identifier = "io.github.Redrield.Conductor"
copyright = "MPL-2"
[package.metadata.rpm]
package = "conductor"
[package.metadata.rpm.cargo]
buildflags = ["--release"]
[package.metadata.rpm.targets]
conductor = { path = "/usr/bin/conductor" }