core/Cargo.toml

38 lines
907 B
TOML
Raw Permalink Normal View History

[package]
name = "hole"
2020-11-01 16:46:47 +00:00
version = "0.0.1"
authors = ["horhik <horhik@tuta.io>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ntru = "0.5.6"
rusqlite = {version = "0.25.1", features = ["chrono"]}
2021-04-20 19:23:04 +00:00
toml = "0.5.8"
2021-01-08 19:30:52 +00:00
tungstenite = "0.12.0"
2021-01-08 10:35:42 +00:00
tokio = { version = "0.3.3", features = ["full"] }
2021-03-11 06:53:47 +00:00
log = "0.4.14"
2020-11-01 16:46:47 +00:00
futures = "0.3.6"
async-std = "1.6.5"
async-tls = "0.10.0"
futures-util = "*"
serde_json = "1.0.59"
serde = "1.0.116"
serde_derive = "1.0.116"
2021-01-05 17:40:00 +00:00
async-trait = "0.1.42"
2021-03-11 06:53:47 +00:00
simple_logger = "1.11.0"
2021-03-29 08:44:26 +00:00
chrono = {version = "0.4.19", features = ["serde"]}
2021-03-31 04:12:26 +00:00
uuid = {version = "0.8.2", features = ["serde" , "v4"]}
2021-04-20 19:23:04 +00:00
regex = "1.4.5"
r2d2_sqlite = "0.18.0"
r2d2 = "0.8.9"
2020-11-01 16:46:47 +00:00
2021-02-27 21:58:55 +00:00
[dependencies.fcpv2]
path = "../FCPv2"
2020-11-01 16:46:47 +00:00
[dependencies.async-tungstenite]
2021-01-08 19:30:52 +00:00
version = "0.11.0"
2020-11-01 16:46:47 +00:00
features = ["tokio-runtime", "tokio-native-tls", "async-tls", "async-std"]
2021-02-27 21:58:55 +00:00