forked from vvanders/netcode.io
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
37 lines (31 loc) · 682 Bytes
/
Cargo.toml
File metadata and controls
37 lines (31 loc) · 682 Bytes
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
cargo-features = ["edition"]
[package]
name = "netcode"
version = "0.3.1"
authors = ["Val Vanderschaegen <valere.vanderschaegen@gmail.com>"]
build = "rust/build.rs"
links = "libnetcode"
keywords = ["netcode"]
license = "BSD-3-Clause"
repository = "https://github.com/vvanders/netcode-rust"
documentation = "https://docs.rs/netcode"
description = "Wrapper for netcode.io library"
exclude = [
"go/*"
]
[dependencies]
libsodium-sys = "0.2"
log = "0.4"
byteorder = "1.3"
time = "0.2"
[dev-dependencies]
env_logger = "0.7"
lazy_static = "1.4"
[build-dependencies]
cc = "1.0"
bindgen = "0.54"
[[bin]]
path = "rust/src/example.rs"
name = "example"
[lib]
path = "rust/src/lib.rs"