diff --git a/yaml/Cargo.toml b/yaml/Cargo.toml index 0ab71d56..5e8bc9fd 100644 --- a/yaml/Cargo.toml +++ b/yaml/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_yaml" -version = "0.4.0-rc1" +version = "0.4.0" authors = ["David Tolnay "] license = "MIT/Apache-2.0" description = "YAML support for Serde" @@ -14,8 +14,5 @@ preserve_order = ["yaml-rust/preserve_order"] [dependencies] clippy = { version = "^0.*", optional = true } -serde = "0.8.0-rc3" +serde = "0.8.0" yaml-rust = "^0.3.3" - -[replace] -"serde:0.8.0-rc3" = { git = "https://github.com/serde-rs/serde" } diff --git a/yaml_tests/Cargo.toml b/yaml_tests/Cargo.toml index 37c93d76..e34179cf 100644 --- a/yaml_tests/Cargo.toml +++ b/yaml_tests/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "serde_yaml_tests" -version = "0.4.0-rc1" +version = "0.4.0" authors = ["David Tolnay "] build = "build.rs" @@ -10,18 +10,15 @@ with-syntex = ["syntex", "serde_codegen", "indoc/with-syntex"] [build-dependencies] syntex = { version = "*", optional = true } -serde_codegen = { version = "0.8.0-rc3", optional = true } +serde_codegen = { version = "0.8.0", optional = true } indoc = "*" [dependencies] -serde = "0.8.0-rc3" +serde = "0.8.0" serde_yaml = { path = "../yaml" } -serde_macros = { version = "0.8.0-rc3", optional = true } +serde_macros = { version = "0.8.0", optional = true } indoc = "*" [[test]] name = "test" path = "tests/test.rs" - -[replace] -"serde:0.8.0-rc3" = { git = "https://github.com/serde-rs/serde" }