Skip to content

Commit 7258486

Browse files
author
pierresy
committed
Updated to work with latest libc crate and winapi crate.
1 parent 126085b commit 7258486

File tree

4 files changed

+200
-173
lines changed

4 files changed

+200
-173
lines changed

.travis.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,9 @@ rust:
44
- beta
55
- nightly
66
matrix:
7-
allow_failure:
7+
allow_failures:
88
- rust: nightly
99

1010
before_script:
11+
- sudo apt-get update
1112
- sudo apt-get install libsctp1 libsctp-dev lksctp-tools

Cargo.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22

33
name = "rust-sctp"
4-
version = "0.0.3"
4+
version = "0.0.4"
55
description = "High level SCTP networking library"
66
repository = "https://github.com/phsym/rust-sctp"
77
documentation = "http://phsym.github.io/rust-sctp"
@@ -11,8 +11,10 @@ keywords = ["transport", "network", "sctp", "libsctp", "socket"]
1111
license = "MIT"
1212

1313
[dependencies]
14-
sctp-sys = "*"
15-
libc = "0.1.*"
14+
sctp-sys = { git = "https://github.com/phsym/sctp-sys" }
15+
libc = "^0.2"
16+
winapi = "^0.2"
17+
ws2_32-sys = "^0.2"
1618

1719
[lib]
1820
name = "sctp"

0 commit comments

Comments
 (0)