core/Cargo.toml

32 lines
685 B
TOML
Raw 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"
2021-02-27 21:58:55 +00:00
rusqlite = "0.24.2"
toml = "0.5.6"
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"] }
2020-11-01 16:46:47 +00:00
log = "0.4.11"
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"
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