diff options
author | Teddy Wing | 2018-11-03 16:50:11 +0100 |
---|---|---|
committer | Teddy Wing | 2018-11-03 16:50:11 +0100 |
commit | 304ba6a5f4c4ddd179c43c29faac4d99bb874109 (patch) | |
tree | 84d9be2e226d02da9b2ad36f2674aeea7ba6b2e4 | |
parent | fc2633cae4375b07a3bf69d67ab3a325e480248f (diff) | |
download | dome-key-web-304ba6a5f4c4ddd179c43c29faac4d99bb874109.tar.bz2 |
Cargo.toml: Add 'fastcgi' crate
-rw-r--r-- | license-generator/Cargo.lock | 23 | ||||
-rw-r--r-- | license-generator/Cargo.toml | 1 |
2 files changed, 24 insertions, 0 deletions
diff --git a/license-generator/Cargo.lock b/license-generator/Cargo.lock new file mode 100644 index 0000000..3f954cf --- /dev/null +++ b/license-generator/Cargo.lock @@ -0,0 +1,23 @@ +[[package]] +name = "fastcgi" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[[package]] +name = "libc" +version = "0.2.43" +source = "registry+https://github.com/rust-lang/crates.io-index" + +[[package]] +name = "license-generator" +version = "0.0.1" +dependencies = [ + "fastcgi 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)", +] + +[metadata] +"checksum fastcgi 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c4159a0f48bea0281602e508eb070d7d7ba1f6ac2480f9db1a60a39274aea1cc" +"checksum libc 0.2.43 (registry+https://github.com/rust-lang/crates.io-index)" = "76e3a3ef172f1a0b9a9ff0dd1491ae5e6c948b94479a3021819ba7d860c8645d" diff --git a/license-generator/Cargo.toml b/license-generator/Cargo.toml index 7b81700..e4a49d6 100644 --- a/license-generator/Cargo.toml +++ b/license-generator/Cargo.toml @@ -3,3 +3,4 @@ name = "license-generator" version = "0.0.1" [dependencies] +fastcgi = "1.0.0" |