-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
54 lines (47 loc) · 1.11 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
[package]
authors = ["Juliette Cordor", "Patrick Auernig <dev.patrick.auernig@gmail.com>"]
description = "A Rust client for Discord RPC."
edition = "2021"
keywords = ["discord", "ipc", "rpc"]
license = "MIT"
name = "discord-presence"
readme = "README.md"
repository = "https://github.com/jewlexx/discord-presence.git"
rust-version = "1.69.0"
version = "1.3.1"
[features]
activity_type = ["dep:serde_repr"]
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
byteorder = "1.5"
bytes = "1.6"
cfg-if = "1.0"
crossbeam-channel = "0.5"
num-derive = "0.4"
num-traits = "0.2"
parking_lot = "0.12"
paste = "1.0"
quork = { version = "0.7", default-features = false, features = [
"macros",
"std",
"traits",
] }
serde_json = "1.0"
serde_repr = { version = "0.1", optional = true }
thiserror = "1.0"
tracing = "0.1"
[target.'cfg(windows)'.dependencies]
named_pipe = "0.4"
[dependencies.serde]
features = ["derive"]
version = "1.0"
[dependencies.uuid]
features = ["v4"]
version = "1.8"
[dev-dependencies]
anyhow = "1.0"
ctrlc = "3.4"
tracing-subscriber = "0.3"
version-sync = "0.9"