1
0
mirror of https://github.com/fafhrd91/actix-net synced 2024-11-23 19:51:06 +01:00
actix-net/Cargo.toml

28 lines
709 B
TOML
Raw Normal View History

2018-12-09 18:56:23 +01:00
[workspace]
members = [
2018-12-10 00:19:25 +01:00
"actix-codec",
2019-03-13 20:40:37 +01:00
"actix-connect",
2019-09-17 12:04:20 +02:00
"actix-ioframe",
2019-01-02 07:59:52 +01:00
"actix-rt",
2018-12-09 18:56:23 +01:00
"actix-service",
2018-12-10 07:14:29 +01:00
"actix-server",
2019-03-09 16:27:56 +01:00
"actix-server-config",
2019-09-17 12:04:20 +02:00
"actix-testing",
2019-03-28 11:56:52 +01:00
"actix-threadpool",
"actix-utils",
2019-01-05 22:19:25 +01:00
"router",
2018-12-09 18:56:23 +01:00
]
2019-03-07 08:33:35 +01:00
2019-09-25 06:00:54 +02:00
[patch.crates-io]
actix-codec = { path = "actix-codec" }
actix-connect = { path = "actix-connect" }
actix-ioframe = { path = "actix-ioframe" }
actix-rt = { path = "actix-rt" }
actix-server = { path = "actix-server" }
actix-server-config = { path = "actix-server-config" }
actix-service = { path = "actix-service" }
actix-testing = { path = "actix-testing" }
actix-threadpool = { path = "actix-threadpool" }
actix-utils = { path = "actix-utils" }
actix-router = { path = "router" }