Commit graph

467 commits

Author SHA1 Message Date
Nikolay Kim
b8cb1ff013 Update ntex-h2 ref 2023-06-16 00:40:00 +06:00
Nikolay Kim
7960b550c9 Migrate to ntex-service 1.2 (#209)
* Migrate to ntex-service 1.2
2023-06-16 00:16:14 +06:00
Nikolay Kim
0e1f0b5f73 Service container (#208)
* Enforce service readiness during call
* Introduce service sharable readiness
2023-06-16 00:16:14 +06:00
Nikolay Kim
a54f6f7ac2 Prepare release 2022-12-28 13:02:24 +01:00
Nikolay Kim
537d8dc18d
Use GAT (#153)
* Rename Transform to Middleware

* Drop FnService's shutdown helper

* refactor Service trait to use GAT

* Migrate ntex to new service

* move Stack to service

* use BoxFuture

* simplify poll_shitdown method
2022-12-26 19:58:38 +01:00
Nikolay Kim
5a317554f9 move ntex::connect to separate crate 2022-06-20 21:54:13 +06:00
Nikolay Kim
d7261e2dd7 Move basic http types to separeate crate 2022-06-13 22:04:16 +06:00
Nikolay Kim
450332144d
Glommio runtime support (#94)
* add glommio runtime support

* optional compilation for glommio
2022-01-17 01:03:15 +06:00
Nikolay Kim
847f2738dd
Refactor async runtimes support (#88)
* refactor async runtimes support
2022-01-03 21:24:49 +06:00
Nikolay Kim
6bc654762d cleanup api; update tests 2021-12-17 09:52:00 +06:00
Nikolay Kim
dafd339817
Add openssl filter (#69)
* add ntex-openssl

* cleanup io api

* add filter shutdown
2021-12-14 22:38:47 +06:00
Nikolay Kim
841ad736d4
Refactor framed io (#67)
* refactor framed io

* allow to add filters

* move io code to separate module

* add into_boxed()

* remove uneeded IO_STOP state

* simplify on_disconnect storage

* cleanup io state

* add io connector
2021-12-13 17:19:43 +06:00
Nikolay Kim
0f796c7642 use ntex-bytes instead of bytes 2021-06-26 00:32:43 +06:00
Nikolay Kim
5f2f65e403 drop direct tokio dependency 2021-06-25 21:54:04 +06:00
Nikolay Kim
91ee6762e7 move low level utils to separate crate 2021-04-04 01:20:18 +06:00
Nikolay Kim
819f5b2eaf Use main and test proc macro from ntex-macros 2021-02-24 13:25:22 +06:00
Nikolay Kim
392e1f8503 prepare release 2020-04-10 13:34:42 +06:00
Nikolay Kim
c1877c2707 restore web proc macros 2020-04-10 13:28:50 +06:00
Nikolay Kim
becdc529bb Refine read back-pressure for h1 dispatcher 2020-04-10 11:14:24 +06:00
Nikolay Kim
5512e8d501 drop web-macros 2020-04-01 14:41:45 +06:00
Nikolay Kim
c1607f1698 refactor Factory trait 2020-04-01 14:34:45 +06:00
Nikolay Kim
20a404ed1e rename ntex-macros 2020-03-31 08:52:52 +06:00
Nikolay Kim
a3abae8c16 remove actix artifacts 2020-03-30 11:45:20 +06:00
Nikolay Kim
7df3cc59a1 merge actix-rt 2020-03-29 14:15:18 +06:00
Nikolay Kim
4ec01db40a merge actix-codec 2020-03-28 21:53:51 +06:00
Nikolay Kim
243e274a82 merge actix-connect 2020-03-25 10:43:20 +06:00
Nikolay Kim
87941f683f drop actix-tls dependency 2020-03-23 10:53:34 +06:00
Nikolay Kim
4fb031c454 move server to ntex 2020-03-23 10:36:46 +06:00
Nikolay Kim
e862efc4e6 add ntex-rouoter crate 2020-03-22 12:36:52 +06:00
Nikolay Kim
c910e595a2 move service to ntex-service 2020-02-26 11:15:03 -08:00
Nikolay Kim
b1095d43bd include some of actix-net packages to workspace 2020-02-26 09:44:06 -08:00
Nikolay Kim
c38974401a add Service::poll_shutdown 2020-02-17 20:27:00 +06:00
Nikolay Kim
88cd070ced update tests 2020-02-17 17:35:34 +06:00
Nikolay Kim
dfd0bca0ab refactor layout 2020-02-15 12:03:23 +06:00
kevinpoitra
2c4b8595cc Upgrade time to 0.2.5 (#1254)
* Use `OffsetDateTime` instead of `PrimitiveDateTime`

* Parse time strings with `PrimitiveDateTime::parse` instead of `OffsetDateTime::parse`

* Remove unused `time` dependency from actix-multipart

* Fix a few errors with time related tests from the `time` upgrade

* Implement logic to convert a RFC 850 two-digit year into a full length year, and organize time parsing related functions

* Upgrade `time` to 0.2.2

* Correctly parse C's asctime time format using time 0.2's new format patterns

* Update CHANGES.md

* Use `time` without any of its deprecated functions

* Enforce a UTC time offset when converting an `OffsetDateTime` into a Header value

* Use the more readable version of `Duration::seconds(0)`, `Duration::zero()`

* Remove unneeded conversion of time::Duration to std::time::Duration

* Use `OffsetDateTime::as_seconds_f64` instead of manually calculating the amount of seconds from nanoseconds

* Replace a few additional instances of `Duration::seconds(0)` with `Duration::zero()`

* Truncate any nanoseconds from a supplied `Duration` within `Cookie::set_max_age` to ensure two Cookies with the same amount whole seconds equate to one another

* Fix the actix-http:🍪:do_not_panic_on_large_max_ages test

* Convert `Cookie::max_age` and `Cookie::expires` examples to `time` 0.2

Mainly minor  changes. Type inference can be used alongside the new
`time::parse` method, such that the type doesn't need to be specified.
This will be useful if a refactoring takes place that changes the type.
There are also new macros, which are used where possible.

One change that is not immediately obvious, in `HttpDate`, there was an
unnecessary conditional. As the time crate allows for negative durations
(and can perform arithmetic with such), the if/else can be removed
entirely.

Time v0.2.3 also has some bug fixes, which is why I am not using a more
general v0.2 in Cargo.toml.

v0.2.3 has been yanked, as it was backwards imcompatible. This version
reverts the breaking change, while still supporting rustc back to
1.34.0.

* Add missing `time::offset` macro import

* Fix type confusion when using `time::parse` followed by `using_offset`

* Update `time` to 0.2.5

* Update CHANGES.md

Co-authored-by: Jacob Pratt <the.z.cuber@gmail.com>
2020-02-15 10:40:07 +06:00
Nikolay Kim
cf9cca489f add extra constraints 2020-02-15 10:40:07 +06:00
Nikolay Kim
f86ce0390e allow to specify multi pattern for resources 2019-12-25 20:14:44 +04:00
Nikolay Kim
1c75e6876b update migration 2019-12-22 17:16:07 +04:00
Nikolay Kim
6a0cd2dced Rename HttpServer::start() to HttpServer::run() 2019-12-22 17:12:22 +04:00
Nikolay Kim
c7f3915779 update actix-service dep 2019-12-22 16:39:25 +04:00
Nikolay Kim
8b8a9a995d bump ver 2019-12-20 17:36:48 +06:00
Nikolay Kim
1d12ba9d5f Replace brotli with brotli2 #1224 2019-12-20 13:50:07 +06:00
Nikolay Kim
b0aa9395da prep actix-web alpha.6 release 2019-12-15 22:51:14 +06:00
Nikolay Kim
a153374b61 migrate actix-web-actors 2019-12-15 22:45:38 +06:00
Nikolay Kim
cb705317b8 compile with default-features off 2019-12-15 13:28:54 +06:00
Nikolay Kim
c878f66d05 fix docs.rs features list 2019-12-13 12:40:22 +06:00
Nikolay Kim
8881c13e60 update changes 2019-12-13 12:16:43 +06:00
Nikolay Kim
d006a7b31f update changes 2019-12-13 12:10:45 +06:00
Nikolay Kim
4937c9f9c2 refactor http-test server 2019-12-12 23:08:38 +06:00
Nikolay Kim
db1d6b7963 refactor test server impl 2019-12-12 22:28:47 +06:00