diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-17 12:19:13 +0000 |
commit | 218caa410aa38c29984be31a5229b9fa717560ee (patch) | |
tree | c54bd55eeb6e4c508940a30e94c0032fbd45d677 /vendor/ctor/Cargo.toml | |
parent | Releasing progress-linux version 1.67.1+dfsg1-1~progress7.99u1. (diff) | |
download | rustc-218caa410aa38c29984be31a5229b9fa717560ee.tar.xz rustc-218caa410aa38c29984be31a5229b9fa717560ee.zip |
Merging upstream version 1.68.2+dfsg1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/ctor/Cargo.toml')
-rw-r--r-- | vendor/ctor/Cargo.toml | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/vendor/ctor/Cargo.toml b/vendor/ctor/Cargo.toml index efcd2cffe..8f7cd4b96 100644 --- a/vendor/ctor/Cargo.toml +++ b/vendor/ctor/Cargo.toml @@ -12,10 +12,10 @@ [package] edition = "2018" name = "ctor" -version = "0.1.22" +version = "0.1.26" authors = ["Matt Mastracci <matthew@mastracci.com>"] description = "__attribute__((constructor)) for Rust" -readme = "../README.md" +readme = "README.md" license = "Apache-2.0 OR MIT" repository = "https://github.com/mmastrac/rust-ctor" @@ -26,15 +26,23 @@ proc-macro = true [[example]] name = "example" path = "src/example.rs" + [dependencies.quote] -version = "1.0.9" +version = "1.0.20" [dependencies.syn] -version = "1.0.73" -features = ["full", "parsing", "printing", "proc-macro"] +version = "1.0.98" +features = [ + "full", + "parsing", + "printing", + "proc-macro", +] default-features = false + [dev-dependencies.libc-print] -version = "0.1.15" +version = "0.1.20" + [badges.travis-ci] branch = "master" repository = "mmastrac/rust-ctor" |