-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
30 lines (23 loc) · 818 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
[package]
name = "mycorrh"
version = "0.1.1"
edition = "2021"
license = "MIT"
description = "Mycorrh is a fast concurrent messaging system for Rust."
repository = "https://github.com/jrcarl624/mycorrh"
authors = ["jrcarl624 <[email protected]>"]
readme = "README.md"
keywords = ["messaging", "concurrent", "async", "tokio", "event"]
categories = ["concurrency", "asynchronous"]
license-file = "LICENSE"
publish = true
documentation = "https://docs.rs/mycorrh"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = []#["cache"] # Remove this later
cache = ["dep:moka"]
[dependencies]
tokio = { version = "1.27.0", features = ["full"] }
async-trait = "0.1.68"
moka = { version = "0.12.1", features = ["future"], optional = true }
fxhash = "0.2.1"