diff options
author | Teddy Wing | 2020-07-04 18:45:36 +0200 |
---|---|---|
committer | Teddy Wing | 2020-07-04 18:45:36 +0200 |
commit | 0ddfedea3f89f20b100061037277671451b34c4a (patch) | |
tree | 51b8b995658b4771dbefa761fec44d14edd46e10 /Cargo.toml | |
parent | 889481cc62eac9ec2fde2d78cd804b1a72ee046f (diff) | |
download | fastcgi-conduit-0ddfedea3f89f20b100061037277671451b34c4a.tar.bz2 |
Cargo.toml: Move `conduit-router` to `dev-dependencies`v0.1.0
Since we're only using it in an example binary, it shouldn't be a main
library dependency.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -5,9 +5,11 @@ edition = "2018" [dependencies] conduit = "0.9.0-alpha.2" -conduit-router = "0.9.0-alpha.2" fastcgi = "1.0.0" http = "0.2.1" Inflector = "0.11.4" log = "0.4.8" snafu = "0.6.8" + +[dev-dependencies] +conduit-router = "0.9.0-alpha.2" |