Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
parkpow
GitHub Repository: parkpow/deep-license-plate-recognition
Path: blob/master/gate-controller/src-tauri/Cargo.toml
1083 views
1
[package]
2
name = "gatecontroller"
3
version = "0.1.0"
4
description = "takes API from external source and triggers gate dry contact to open"
5
authors = ["Platerecognizer"]
6
license = ""
7
repository = ""
8
edition = "2021"
9
rust-version = "1.77.2"
10
11
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
12
13
[lib]
14
name = "app_lib"
15
crate-type = ["staticlib", "cdylib", "rlib"]
16
17
[build-dependencies]
18
tauri-build = { version = "2.3.0", features = [] }
19
20
[dependencies]
21
serde_json = "1.0"
22
serde = { version = "1.0", features = ["derive"] }
23
log = "0.4"
24
tauri = { version = "2.6.2", features = [] }
25
tauri-plugin-log = "2"
26
tauri-plugin-core = "2.0.0-beta.0"
27
serialport = "4.1.0"
28
tauri-plugin-opener = "2"
29
rand = "0.8"
30
chrono = { version = "0.4", features = ["serde"] }
31
tiny_http = "0.12"
32
33