From 01c2e47e882d1db5756cb1228982b99f6239b515 Mon Sep 17 00:00:00 2001 From: Edward Shen Date: Mon, 9 May 2022 01:19:03 -0700 Subject: [PATCH] Update Cargo.toml --- .gitignore | 2 +- Cargo.toml | 16 +++++++--------- 2 files changed, 8 insertions(+), 10 deletions(-) diff --git a/.gitignore b/.gitignore index c79c484..d491e23 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ /target -config.toml +/config.toml /crypto_data diff --git a/Cargo.toml b/Cargo.toml index 973040f..ed02820 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,20 +3,18 @@ name = "matrix-bot" version = "0.1.0" authors = ["Edward Shen "] edition = "2021" +include = ["src/main.rs"] [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"] } -# url = "2.1" +toml = "0.5" tracing = "0.1" 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" -enum-iterator = "0.7" -anyhow = "1" [dependencies.matrix-sdk] git = "https://github.com/matrix-org/matrix-rust-sdk" @@ -25,4 +23,4 @@ rev = "be2a818c84b21980e9219fa8bd4c15d3a9c588c2" [profile.release] strip = true lto = "fat" -codegen-units = 1 \ No newline at end of file +codegen-units = 1