##// END OF EJS Templates
hgdemandimport: exclude more sqlalchemy modules...
hgdemandimport: exclude more sqlalchemy modules We could potentially exclude the entire sqlalchemy library.

File last commit:

r45179:1f5ab1a9 default
r46179:07731064 5.5.2 stable
Show More
build.rs
7 lines | 155 B | application/rls-services+xml | RustLexer
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 fn main() {
cc::Build::new()
.warnings(true)
.file("src/sendfds.c")
Yuya Nishihara
rust-chg: extract signal handlers from chg/procutil.c...
r40154 .file("src/sighandlers.c")
Yuya Nishihara
rust-chg: add function to send fds via domain socket...
r40005 .compile("procutil");
}