forked from kellerli/abs_admin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
47 lines (44 loc) · 1.14 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 = "abs_admin"
version = "0.1.0"
authors = ["zhuxiujia <zhuxiujia@qq.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
#rbatis orm dep must use async-std(Because actix-web relies on tokio0.2)
rbson = "2.0"
tokio = "1"
rbatis = { version = "3.0", default-features = false, features = ["mysql","runtime-tokio-rustls"] }
#serde and json
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.8"
chrono = { version = "0.4", features = ["serde"] }
#static
lazy_static = "1.4.0"
#log
log = "0.4"
fast_log = { version="1.4", features = ["lz4","zip", "gzip"]}
#futures
futures = "0.3"
#web server
actix-web = "4.0.0-rc.2"
actix-http = "2.2"
#redis
redis = {version = "0.20", features = ["async-std-comp"] }
#jwt
jsonwebtoken = "7"
#snowflake
rustflake = "0.1.0"
md5 = "0.7.0"
#captcha
captcha = "0.0.8"
#http client,use rust-tls replace to native tls
reqwest = { version = "0.11",default-features = false, features = ["json","rustls-tls"] }
#image code
image = "0.23"
#async trait
async-trait = "0.1"
#map
indexmap = "1.7.0"
once_cell = "1.9"