-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 1.04 KB
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 1.04 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
[package]
name = "botdevice"
version = "6.1.0"
edition = "2021"
description = "BotDevice - Android, HarmonyOS & IoT powered by General Bots"
license = "AGPL-3.0"
repository = "https://github.com/GeneralBots/BotServer"
keywords = ["bot", "mobile", "android", "iot", "tauri"]
categories = ["gui", "embedded"]
[lib]
name = "botdevice_lib"
crate-type = ["staticlib", "cdylib", "rlib"]
[dependencies]
# Tauri with mobile features
tauri = { workspace = true }
tauri-plugin-dialog = { workspace = true }
tauri-plugin-opener = { workspace = true }
tauri-plugin-notification = { workspace = true }
tauri-plugin-http = { workspace = true }
tauri-plugin-geolocation = { workspace = true }
# Common
log = { workspace = true }
android_logger = { workspace = true }
env_logger = { workspace = true }
serde_json = { workspace = true }
reqwest = { workspace = true, features = ["json"] }
[build-dependencies]
tauri-build = { workspace = true, features = ["codegen"] }
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]
[lints]
workspace = true