Skip to content
This repository has been archived by the owner on Jan 21, 2023. It is now read-only.

Commit

Permalink
Remove Hyper support
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonSapin committed May 21, 2017
1 parent 9b8eb50 commit 3c38d02
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 94 deletions.
3 changes: 1 addition & 2 deletions Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "kuchiki"
version = "0.4.3"
version = "0.5.0"
authors = ["Simon Sapin <simon.sapin@exyr.org>"]
license = "MIT"
description = "(朽木) HTML/XML tree manipulation library"
Expand All @@ -18,7 +18,6 @@ cssparser = "0.7"
matches = "0.1.4"
html5ever = "0.13.1"
html5ever-atoms = "0.2.1"
hyper = {version = ">=0.7, <0.11", optional = true}
ref_slice = "1.0"
selectors = "0.15"

Expand Down
20 changes: 0 additions & 20 deletions examples/hyper.rs

This file was deleted.

70 changes: 0 additions & 70 deletions src/hyper.rs

This file was deleted.

2 changes: 0 additions & 2 deletions src/lib.rs
Expand Up @@ -15,7 +15,6 @@ extern crate selectors;
#[cfg(test)] extern crate tempdir;

mod attributes;
#[cfg(feature = "hyper")] mod hyper;
pub mod iter;
mod move_cell;
mod node_data_ref;
Expand All @@ -40,6 +39,5 @@ pub use tree::{NodeRef, Node, NodeData, ElementData, Doctype, DocumentData};
pub mod traits {
pub use html5ever::tendril::TendrilSink;
pub use iter::{NodeIterator, ElementIterator};
#[cfg(feature = "hyper")] pub use hyper::{ParserExt, IntoResponse};
}

0 comments on commit 3c38d02

Please sign in to comment.