forked from kladd/krpc-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
36 lines (33 loc) · 866 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
35
36
[package]
name = "krpc-client"
version = "0.5.1-api+0.5.2"
edition = "2021"
authors = ["Kyle Ladd <[email protected]>"]
description = "A stand-alone client for the Kerbal Space Program kRPC mod."
keywords = ["krpc", "kerbal"]
documentation = "https://docs.rs/krpc-client"
repository = "https://github.com/kladd/krpc-client"
license = "GPL-3.0"
[features]
default = ["fmt"]
fmt = ["dep:prettyplease"]
tokio = ["dep:tokio"]
[dependencies]
thiserror = "1.0"
protobuf = { version = "3.2.0", features = ["bytes"] }
bytes = "1.4"
tokio = { version = "1.40.0", optional = true, features = [
"io-util",
"net",
"rt",
"sync",
] }
[build-dependencies]
syn = { version = "2.0", features = ["full"] }
quote = "1.0.26"
protobuf-codegen = "3.2.0"
serde = "1.0"
serde_json = "1.0"
convert_case = "0.6.0"
proc-macro2 = "1.0"
prettyplease = { version = "0.2", optional = true }