linktime 0.1.0

Link-time tricks for Rust
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2021"
rust-version = "1.60"
name = "linktime"
version = "0.1.0"
authors = ["Matt Mastracci <matthew@mastracci.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Link-time tricks for Rust"
readme = "README.md"
categories = ["no-std"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/mmastrac/rust-ctor"

[features]
ctor = ["dep:ctor"]
default = [
    "std",
    "proc_macro",
    "ctor",
    "dtor",
    "link-section",
]
dtor = ["dep:dtor"]
link-section = ["dep:link-section"]
proc_macro = [
    "dep:linktime-proc-macro",
    "ctor?/proc_macro",
    "dtor?/proc_macro",
    "link-section?/proc_macro",
]
std = [
    "ctor?/std",
    "dtor?/std",
    "link-section?/std",
]
used_linker = [
    "ctor?/used_linker",
    "dtor?/used_linker",
    "link-section?/used_linker",
]

[lib]
name = "linktime"
path = "src/lib.rs"

[dependencies.ctor]
version = "0.12.0"
optional = true
default-features = false

[dependencies.dtor]
version = "0.12.0"
optional = true
default-features = false

[dependencies.link-section]
version = "0.12.0"
optional = true
default-features = false

[dependencies.linktime-proc-macro]
version = "0.1.0"
optional = true

[dev-dependencies]