@@ -1609,6 +1609,9 @@ fn publish_dev_dep_stripping() {
1609
1609
Package :: new ( "optional-namespaced" , "1.0.0" )
1610
1610
. feature ( "cat" , & [ ] )
1611
1611
. publish ( ) ;
1612
+ Package :: new ( "optional-renamed-namespaced" , "1.0.0" )
1613
+ . feature ( "cat" , & [ ] )
1614
+ . publish ( ) ;
1612
1615
Package :: new ( "build-only" , "1.0.0" )
1613
1616
. feature ( "cat" , & [ ] )
1614
1617
. publish ( ) ;
@@ -1652,13 +1655,15 @@ fn publish_dev_dep_stripping() {
1652
1655
"target-normal-and-dev/cat",
1653
1656
"optional-dep-feature/cat",
1654
1657
"dep:optional-namespaced",
1658
+ "dep:optional-renamed-namespaced10",
1655
1659
]
1656
1660
1657
1661
[dependencies]
1658
1662
normal-only = { version = "1.0", features = ["cat"] }
1659
1663
normal-and-dev = { version = "1.0", features = ["cat"] }
1660
1664
optional-dep-feature = { version = "1.0", features = ["cat"], optional = true }
1661
1665
optional-namespaced = { version = "1.0", features = ["cat"], optional = true }
1666
+ optional-renamed-namespaced10 = { version = "1.0", features = ["cat"], optional = true, package = "optional-renamed-namespaced" }
1662
1667
1663
1668
[build-dependencies]
1664
1669
build-only = { version = "1.0", features = ["cat"] }
@@ -1770,6 +1775,18 @@ You may press ctrl-c to skip waiting; the crate should be available shortly.
1770
1775
"target": null,
1771
1776
"version_req": "^1.0"
1772
1777
},
1778
+ {
1779
+ "default_features": true,
1780
+ "explicit_name_in_toml": "optional-renamed-namespaced10",
1781
+ "features": [
1782
+ "cat"
1783
+ ],
1784
+ "kind": "normal",
1785
+ "name": "optional-renamed-namespaced",
1786
+ "optional": true,
1787
+ "target": null,
1788
+ "version_req": "^1.0"
1789
+ },
1773
1790
{
1774
1791
"default_features": true,
1775
1792
"features": [
@@ -1909,6 +1926,12 @@ version = "1.0"
1909
1926
features = ["cat"]
1910
1927
optional = true
1911
1928
1929
+ [dependencies.optional-renamed-namespaced10]
1930
+ version = "1.0"
1931
+ features = ["cat"]
1932
+ optional = true
1933
+ package = "optional-renamed-namespaced"
1934
+
1912
1935
[dev-dependencies.normal-and-dev]
1913
1936
version = "1.0"
1914
1937
features = ["cat"]
@@ -1927,6 +1950,7 @@ foo_feature = [
1927
1950
"target-normal-and-dev/cat",
1928
1951
"optional-dep-feature/cat",
1929
1952
"dep:optional-namespaced",
1953
+ "dep:optional-renamed-namespaced10",
1930
1954
]
1931
1955
1932
1956
[target."cfg(unix)".dependencies.target-normal-and-dev]
0 commit comments