Skip to content

new libuv bindings #1878

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 12 commits into from
1 change: 0 additions & 1 deletion mk/rt.mk
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ RUNTIME_CS_$(1) := \
rt/rust_port.cpp \
rt/rust_upcall.cpp \
rt/rust_uv.cpp \
rt/rust_uvtmp.cpp \
rt/rust_log.cpp \
rt/rust_port_selector.cpp \
rt/circular_buffer.cpp \
Expand Down
3 changes: 1 addition & 2 deletions src/libstd/std.rc
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#[license = "MIT"];
#[crate_type = "lib"];

export fs, io, net, run, uv, uvtmp;
export fs, io, net, run, uv;
export c_vec, four, tri, util;
export bitv, deque, fun_treemap, list, map, smallintmap, sort, treemap, ufind;
export rope;
Expand All @@ -25,7 +25,6 @@ mod net;
#[path = "run_program.rs"]
mod run;
mod uv;
mod uvtmp;


// Utility modules
Expand Down
Loading