2018-12-09 17:56:23 +00:00
|
|
|
[workspace]
|
|
|
|
members = [
|
2018-12-09 23:19:25 +00:00
|
|
|
"actix-codec",
|
2019-03-13 19:40:37 +00:00
|
|
|
"actix-connect",
|
2019-09-17 10:04:20 +00:00
|
|
|
"actix-ioframe",
|
2019-01-02 06:59:52 +00:00
|
|
|
"actix-rt",
|
2019-11-25 15:49:11 +00:00
|
|
|
"actix-macros",
|
2018-12-09 17:56:23 +00:00
|
|
|
"actix-service",
|
2018-12-10 06:14:29 +00:00
|
|
|
"actix-server",
|
2019-09-17 10:04:20 +00:00
|
|
|
"actix-testing",
|
2019-03-28 10:56:52 +00:00
|
|
|
"actix-threadpool",
|
2019-12-02 05:30:27 +00:00
|
|
|
"actix-tls",
|
2020-01-15 19:43:53 +00:00
|
|
|
"actix-tracing",
|
2018-12-11 00:16:40 +00:00
|
|
|
"actix-utils",
|
2019-01-05 21:19:25 +00:00
|
|
|
"router",
|
2019-12-07 03:57:43 +00:00
|
|
|
"string",
|
2018-12-09 17:56:23 +00:00
|
|
|
]
|
2019-03-07 07:33:35 +00:00
|
|
|
|
2019-09-25 04:00:54 +00:00
|
|
|
[patch.crates-io]
|
|
|
|
actix-codec = { path = "actix-codec" }
|
|
|
|
actix-connect = { path = "actix-connect" }
|
|
|
|
actix-ioframe = { path = "actix-ioframe" }
|
|
|
|
actix-rt = { path = "actix-rt" }
|
2019-11-25 15:49:11 +00:00
|
|
|
actix-macros = { path = "actix-macros" }
|
2019-09-25 04:00:54 +00:00
|
|
|
actix-server = { path = "actix-server" }
|
|
|
|
actix-service = { path = "actix-service" }
|
|
|
|
actix-testing = { path = "actix-testing" }
|
|
|
|
actix-threadpool = { path = "actix-threadpool" }
|
2019-12-02 05:30:27 +00:00
|
|
|
actix-tls = { path = "actix-tls" }
|
2020-01-15 21:35:07 +00:00
|
|
|
actix-tracing = { path = "actix-tracing" }
|
2019-09-25 04:00:54 +00:00
|
|
|
actix-utils = { path = "actix-utils" }
|
|
|
|
actix-router = { path = "router" }
|
2019-12-07 03:57:43 +00:00
|
|
|
bytestring = { path = "string" }
|