-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
60 lines (52 loc) · 2.19 KB
/
Cargo.toml
File metadata and controls
60 lines (52 loc) · 2.19 KB
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
60
[package]
name = "reactsc"
version = "0.1.0"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
# The `_lib` suffix may seem redundant but it is necessary
# to make the lib name unique and wouldn't conflict with the bin name.
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
name = "reactsc_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[build-dependencies]
tauri-build = { version = "2", features = [] }
[dependencies]
tauri = { version = "2", features = [] }
tauri-plugin-opener = "2"
tauri-plugin-log = "2.0.0-rc"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
log = "0.4"
crossbeam-channel = "0.5.13"
toml = "0.8.19"
tracing-subscriber = "0.3.19"
dotenv = "0.15"
wg_2024 = { git = "https://github.com/WGL-2024/WGL_repo_2024.git", features = ["serialize"] }
client = { git = "https://github.com/Rustbusters/client.git" }
#client = { path = "../../client" }
server = { git = "https://github.com/Rustbusters/server.git" }
#server = { path = "../../server" }
common-utils = { git = "https://github.com/Rustbusters/common-utils.git" }
# DRONES
rustbusters-drone = { git = "ssh://github.com/Rustbusters/drone.git" }
rusty_drones = { git = "https://github.com/rusty-drone-2024/rusty-drone" }
lockheedrustin-drone = { git = "https://github.com/Lockheed-Rustin/drone.git" }
fungi_drone = { git = "https://github.com/Fungi-B-D/Fungi-Drone.git" }
rustastic-drone = { git = "https://github.com/Rustastic/RustasticDrone.git" }
rusteze_drone = { git = "https://github.com/Rusteze-AP/drone.git" }
rust_do_it = { git = "https://github.com/RustDoIt/Drone.git" }
rust-roveri = { git = "https://github.com/RustRoveri/rust-roveri.git" }
RF_drone = { git = "https://github.com/RustAndFurious/RF_drone.git" }
ap2024_unitn_cppenjoyers_drone = { git = "https://github.com/Cpp-enjoyers/drone.git" }
wg_2024-rust = { git = "https://github.com/LuigiMiazzo17/unitn-advancedProgramming-WGL_2024-drone.git" }
thiserror = "2.0.3"
parking_lot = "0.12"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
uuid = "1.12.1"
chrono = "0.4.39"
rand = "0.8.5"
tauri-plugin-deep-link = "2"