Update Cargo.toml

master
Edward Shen 2022-05-09 01:19:03 -07:00
parent 5cbb24d51f
commit 01c2e47e88
Signed by: edward
GPG Key ID: 19182661E818369F
2 changed files with 8 additions and 10 deletions

2
.gitignore vendored
View File

@ -1,3 +1,3 @@
/target /target
config.toml /config.toml
/crypto_data /crypto_data

View File

@ -3,20 +3,18 @@ name = "matrix-bot"
version = "0.1.0" version = "0.1.0"
authors = ["Edward Shen <code@eddie.sh>"] authors = ["Edward Shen <code@eddie.sh>"]
edition = "2021" edition = "2021"
include = ["src/main.rs"]
[dependencies] [dependencies]
# matrix-sdk = "0.4" anyhow = "1"
clap = { version = "3", features = ["derive", "cargo"] }
enum-iterator = "0.7"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
# url = "2.1" toml = "0.5"
tracing = "0.1" tracing = "0.1"
tracing-subscriber = "0.3" tracing-subscriber = "0.3"
toml = "0.5"
clap = { version = "3", features = ["derive", "cargo"] }
serde = { version = "1", features = ["derive"] }
# ruma-client-api = "0.14"
uwuify = "0.2" uwuify = "0.2"
enum-iterator = "0.7"
anyhow = "1"
[dependencies.matrix-sdk] [dependencies.matrix-sdk]
git = "https://github.com/matrix-org/matrix-rust-sdk" git = "https://github.com/matrix-org/matrix-rust-sdk"
@ -25,4 +23,4 @@ rev = "be2a818c84b21980e9219fa8bd4c15d3a9c588c2"
[profile.release] [profile.release]
strip = true strip = true
lto = "fat" lto = "fat"
codegen-units = 1 codegen-units = 1