diff --git a/etc/api/type-api.yaml b/etc/api/type-api.yaml index 854ab941fd..f5cac492d5 100644 --- a/etc/api/type-api.yaml +++ b/etc/api/type-api.yaml @@ -29,4 +29,4 @@ cargo: build_script: src/build.rs keywords: [protocol, web, api] dependencies: - - url = "*" + - url = ">= 0.5" diff --git a/etc/api/type-cli.yaml b/etc/api/type-cli.yaml index ec86be019d..b24978eeb8 100644 --- a/etc/api/type-cli.yaml +++ b/etc/api/type-cli.yaml @@ -26,6 +26,6 @@ cargo: keywords: [cli] is_executable: YES dependencies: - - strsim = "*" - - yup-hyper-mock = ">=1.0.0" - - clap = ">= 1.0.3" + - strsim = "0.4" + - yup-hyper-mock = "1.0" + - clap = "1.5" diff --git a/src/mako/Cargo.toml.mako b/src/mako/Cargo.toml.mako index 0b00fd0e2c..af39c13c7f 100644 --- a/src/mako/Cargo.toml.mako +++ b/src/mako/Cargo.toml.mako @@ -26,19 +26,19 @@ name = "${util.program_name()}" % endif [dependencies] -hyper = "0.7.0" +hyper = "0.7" ## Must match the one hyper uses, otherwise there are duplicate similarly named `Mime` structs mime = "0.1.0" serde = ">= 0.6.0" serde_json = ">= 0.6.0" -yup-oauth2 = "*" +yup-oauth2 = "0.5" % for dep in cargo.get('dependencies', list()): ${dep} % endfor [build-dependencies] -syntex = { version = "*" } -serde_codegen = { version = "*" } +syntex = { version = ">= 0.23" } +serde_codegen = { version = ">= 0.6" } % if make.depends_on_suffix is not None: diff --git a/src/md/.DS_Store b/src/md/.DS_Store new file mode 100644 index 0000000000..d035e6347b Binary files /dev/null and b/src/md/.DS_Store differ