-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 847 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
33
34
[package]
name = "suave"
version = "0.2.3"
edition = "2021"
authors = ["Deeton Rushton"]
description = "Multi-process communication utility library."
readme = "README.md"
repository = "https://github.com/deetonn/suave"
license = "MIT"
keywords = ["process", "system", "lowlevel", "multiprocess", "async"]
rust-version = "1.73.0"
include = ["/src", "LICENSE"]
publish = true
homepage = "https://github.com/deetonn/suave"
documentation = "https://docs.rs/suave/latest/suave/"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# Queues are behind a feature because they are linux only
# as it stands.
queue = []
[dependencies]
tokio = { version = "1.34.0", features = [
"fs",
"rt",
"macros",
"io-util",
"time",
] }
arboard = { version = "3.3.0" }
libc = { version = "0.2.150" }