Update Cargo.toml
This commit is contained in:
parent
5cbb24d51f
commit
01c2e47e88
2 changed files with 8 additions and 10 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,3 @@
|
||||||
/target
|
/target
|
||||||
config.toml
|
/config.toml
|
||||||
/crypto_data
|
/crypto_data
|
||||||
|
|
14
Cargo.toml
14
Cargo.toml
|
@ -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"
|
||||||
|
|
Loading…
Reference in a new issue