Skip to content

Commit 78e6d81

Browse files
committed
Adjust the required min version of cc dependency
1 parent f90660f commit 78e6d81

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "stacker"
3-
version = "0.1.13"
3+
version = "0.1.14"
44
authors = ["Alex Crichton <[email protected]>", "Simonas Kazlauskas <[email protected]>"]
55
build = "build.rs"
66
license = "MIT/Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/rust-lang/stacker"
99
homepage = "https://github.com/rust-lang/stacker"
10-
documentation = "https://docs.rs/stacker/0.1.13"
10+
documentation = "https://docs.rs/stacker/0.1.14"
1111
description = """
1212
A stack growth library useful when implementing deeply recursive algorithms that
1313
may accidentally blow the stack.
@@ -34,4 +34,4 @@ features = [
3434
]
3535

3636
[build-dependencies]
37-
cc = "1.0"
37+
cc = "1.0.2"

psm/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "psm"
3-
version = "0.1.12"
3+
version = "0.1.13"
44
authors = ["Simonas Kazlauskas <[email protected]>"]
55
build = "build.rs"
66
description = "Portable Stack Manipulation: stack manipulation and introspection routines"
77
keywords = ["stack", "no_std"]
88
license = "MIT/Apache-2.0"
99
repository = "https://github.com/rust-lang/stacker/"
10-
documentation = "https://docs.rs/psm/0.1.12"
10+
documentation = "https://docs.rs/psm/0.1.13"
1111
readme = "README.mkd"
1212

1313
[dependencies]
1414

1515
[build-dependencies]
16-
cc = "1.0"
16+
cc = "1.0.2"

0 commit comments

Comments
 (0)