Path: blob/master/gate-controller/src-tauri/Cargo.toml
1083 views
[package]1name = "gatecontroller"2version = "0.1.0"3description = "takes API from external source and triggers gate dry contact to open"4authors = ["Platerecognizer"]5license = ""6repository = ""7edition = "2021"8rust-version = "1.77.2"910# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html1112[lib]13name = "app_lib"14crate-type = ["staticlib", "cdylib", "rlib"]1516[build-dependencies]17tauri-build = { version = "2.3.0", features = [] }1819[dependencies]20serde_json = "1.0"21serde = { version = "1.0", features = ["derive"] }22log = "0.4"23tauri = { version = "2.6.2", features = [] }24tauri-plugin-log = "2"25tauri-plugin-core = "2.0.0-beta.0"26serialport = "4.1.0"27tauri-plugin-opener = "2"28rand = "0.8"29chrono = { version = "0.4", features = ["serde"] }30tiny_http = "0.12"313233