-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (38 loc) · 1.35 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
[package]
name = "sonicbot-matrix"
version = "0.1.5"
edition = "2021"
authors = ["Westly Ward <[email protected]>"]
description = "Matrix bot that you can write plugins for"
license-file = "LICENSE"
repository = "https://github.com/sonicrules1234/sonicbot-matrix"
readme = "README.md"
homepage = "https://github.com/sonicrules1234/sonicbot-matrix"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ctrlc-handler = "0.1.1"
glob = "0.3.0"
linewrapper = "0.1.1"
rand = "0.8.4"
regex = "1.5.4"
ruma = { version = "0.4.0", features = ["events", "client-api-c", "api"] }
serde = { version = "1.0.133", features = ["derive"] }
serde_json = "1.0.74"
serde_yaml = "0.8.23"
sonicbot-matrix-macros = "0.1.0"
ureq = { version = "2.4.0", features = ["json"] }
urlencoding = "2.1.0"
uuid = { version = "0.8.2", features = ["v4"] }
[target.'cfg(target_os = "android")'.dependencies]
macroquad = "0.3.13"
[features]
[[package.metadata.android.permission]]
name = "android.permission.INTERNET"
[[package.metadata.android.permission]]
name = "android.permission.MANAGE_EXTERNAL_STORAGE"
[[package.metadata.android.permission]]
name = "android.permission.WRITE_EXTERNAL_STORAGE"
[package.metadata.android]
build_targets = [ "armv7-linux-androideabi", "aarch64-linux-android" ]
target_sdk_version = 30
min_sdk_version = 23