File tree 7 files changed +45
-1
lines changed 7 files changed +45
-1
lines changed Original file line number Diff line number Diff line change 2
2
name = " http-encoding"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
+ license = " Apache-2.0"
6
+ description = " compression for http crate type"
7
+ repository = " https://github.com/HFQR/xitca-web"
8
+ keywords = [" http" , " compression" ]
9
+ authors = [
" fakeshadow <[email protected] >" ]
10
+ readme = " README.md"
5
11
6
12
[features ]
7
13
default = []
Original file line number Diff line number Diff line change
1
+ # a compression crate for http type.
2
+
3
+ ## Requirement
4
+ - Rust 1.75
5
+ - [ http] ( https://crates.io/crates/http ) and [ futures] ( https://crates.io/crates/futures ) for http types and async streaming interaction[ ^ 1 ]
6
+
7
+ [ ^ 1 ] : see project ` Cargo.toml ` for dependency versioning.
Original file line number Diff line number Diff line change 2
2
name = " http-file"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
+ license = " Apache-2.0"
6
+ description = " file serving for http crate type"
7
+ repository = " https://github.com/HFQR/xitca-web"
8
+ keywords = [" http" , " file" ]
9
+ authors = [
" fakeshadow <[email protected] >" ]
10
+ readme = " README.md"
5
11
6
12
[features ]
7
13
default = [" tokio" ]
Original file line number Diff line number Diff line change 2
2
name = " http-multipart"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
+ license = " Apache-2.0"
6
+ description = " multipart for http crate type"
7
+ repository = " https://github.com/HFQR/xitca-web"
8
+ keywords = [" http" , " multipart" ]
9
+ authors = [
" fakeshadow <[email protected] >" ]
10
+ readme = " README.md"
5
11
6
12
[dependencies ]
7
13
bytes = " 1.4"
Original file line number Diff line number Diff line change 2
2
name = " http-ws"
3
3
version = " 0.1.0"
4
4
edition = " 2021"
5
+ license = " Apache-2.0"
6
+ description = " websocket for http crate type"
7
+ repository = " https://github.com/HFQR/xitca-web"
8
+ keywords = [" http" , " websocket" ]
9
+ authors = [
" fakeshadow <[email protected] >" ]
10
+ readme = " README.md"
5
11
6
12
[features ]
7
13
default = []
Original file line number Diff line number Diff line change
1
+ # an async websocket crate.
2
+
3
+ ## Features
4
+ - common http types and streaming interface for easy integration.
5
+
6
+ ## Requirement
7
+ - Rust 1.75
8
+ - [ http] ( https://crates.io/crates/http ) and [ futures] ( https://crates.io/crates/futures ) for http types and async streaming interaction[ ^ 1 ]
9
+
10
+ [ ^ 1 ] : see project ` Cargo.toml ` for dependency versioning.
Original file line number Diff line number Diff line change @@ -42,7 +42,10 @@ multipart = ["http-multipart"]
42
42
websocket = [" http-ws/stream" , " tokio/time" ]
43
43
44
44
# static file serving
45
- file = [" http-file" ]
45
+ file = [" http-file" , " nightly" ]
46
+
47
+ # nightly rust required feature
48
+ nightly = []
46
49
47
50
# macro code generation
48
51
codegen = [" xitca-codegen" ]
You can’t perform that action at this time.
0 commit comments