-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
32 lines (29 loc) · 879 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
30
31
32
[package]
name = "ufc-appbase"
version = "0.1.0"
authors = ["jungyongum <[email protected]>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
appbase = { git = "https://github.com/turnpike/appbase-rs", rev = "0a92475" }
tokio = "1.8.1"
jsonrpc-core = "17.1.0"
jsonrpc-http-server = "17.1.0"
log = "0.4.14"
serde = "1.0.64"
serde_json = "1.0.66"
env_logger = "0.9.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
futures = "0.3.15"
rocksdb = "0.16.0"
amiquip = { version = "0.4", default-features = false }
rand = "0.8.4"
mysql = "*"
dotenv = "0.15.0"
lettre = "0.10.0-rc.3"
clap = "3.0.0-beta.2"
teloxide = { version = "0.4", features = ["auto-send", "macros"] }
[dependencies.mongodb]
version = "2.0.0-beta.2"
default-features = false
features = ["async-std-runtime"]