iron / router

Router middleware for the Iron web framework.
165 stars 74 forks source link

Allow for OpenSSL to be excluded #101

Closed ghost closed 9 years ago

ghost commented 9 years ago

See https://github.com/iron/iron/issues/399

AerialX commented 9 years ago

This can be simplified to just use default-features=false on iron. The hyper dependency isn't required, and neither is the ssl feature.

Also can we do this on every single iron middleware? I've been wanting to do it for months now... Or alternatively keep SSL off by default in iron.

reem commented 9 years ago

@AerialX is right, we actually only need default-features=false for iron. I agree that we should do this for all middleware.

ghost commented 9 years ago

@AerialX I went ahead and changed it. Previously I had it that way, but Travis CI said the build failed. See 8157093

AerialX commented 9 years ago

@reem k, a million PRs incoming. Please do make new releases to crates.io when they're merged :stuck_out_tongue_closed_eyes:

untitaker commented 9 years ago

Thank you!