Cargo Features
[dependencies]
motore = { version = "0.4.1", default-features = false, features = ["tower", "service_send"] }
- default = service_send
-
The
service_send
feature is set by default whenevermotore
is added without
somewhere in the dependency tree.default-features = false - tower
-
enable the tower adapter
Enables tower ^0.4
- service_send default
-
indicates the Service should be Send
Enables service_send of motore-macros
Affects
make_connection::MakeConnection.make_connection
,service::Service.call
,service::UnaryService.call
,service::BoxCloneService
…