-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
20 lines (18 loc) · 646 Bytes
/
Cargo.toml
File metadata and controls
20 lines (18 loc) · 646 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[package]
name = "par"
version = "0.3.10"
edition = "2021"
license = "MIT"
description = "Session types, as an implementation of linear logic with MIX"
repository = "https://github.com/faiface/par"
categories = ["concurrency", "asynchronous"]
keywords = ["concurrency", "async", "futures", "queue", "server"]
[features]
default = ["examples"]
runtime-tokio = ["tokio"]
examples = ["runtime-tokio", "fastrand", "tokio-tungstenite"]
[dependencies]
futures = "0.3.31"
tokio = { version = "1.38.0", features = ["full"], optional = true }
tokio-tungstenite = { version = "0.24.0", optional = true }
fastrand = { version = "2.1.1", optional = true }