forked from storycraft/talk-loco-client-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (26 loc) · 862 Bytes
/
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
[package]
name = "talk-loco-client"
version = "0.1.0"
license = "MIT"
keywords = ["talk", "loco"]
readme = "readme.md"
description = "Official Loco client with command sets"
repository = "https://github.com/storycraft/talk-loco-client-rs"
authors = ["storycraft <storycraft@pancake.sh>"]
edition = "2021"
[features]
wasm = ["loco-protocol/wasm"]
[dependencies]
serde = { version = "1.0", features = ["derive"] }
futures = "0.3.16"
bson = "2.0.1"
indexmap = "1.7.0"
loco-protocol = "5.0.0"
# loco-protocol = { path = "../loco-protocol-rs" }
[dev-dependencies]
talk-api-client = { version = "0.1.0", git = "https://github.com/storycraft/talk-api-client-rs.git" }
tokio-native-tls = "0.3.0"
rsa = { version = "0.5.0", features = ["pem"] }
tokio = { version = "1.9.0", features = ["full"] }
tokio-util = { version = "0.6.9", features = ["compat"] }
pem = "1.0.1"