forked from mas-bandwidth/netcode
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (30 loc) · 719 Bytes
/
Cargo.toml
File metadata and controls
35 lines (30 loc) · 719 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
[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 = { git = "https://github.com/vvanders/sodiumoxide.git" }
log = "0.3.6"
byteorder = "1.0.0"
env_logger = "0.4.2"
time = "0.1.36"
[dev-dependencies]
lazy_static = "0.2.6"
[build-dependencies]
gcc = "0.3.43"
bindgen = "0.22.1"
[[bin]]
path = "rust/src/example.rs"
name = "example"
[lib]
path = "rust/src/lib.rs"