aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml.orig')
-rw-r--r--Cargo.toml.orig36
1 files changed, 36 insertions, 0 deletions
diff --git a/Cargo.toml.orig b/Cargo.toml.orig
new file mode 100644
index 0000000..0c21208
--- /dev/null
+++ b/Cargo.toml.orig
@@ -0,0 +1,36 @@
+[package]
+name = "linkme"
+version = "0.3.9"
+authors = ["David Tolnay <dtolnay@gmail.com>"]
+categories = ["development-tools::build-utils", "development-tools::procedural-macro-helpers", "no-std"]
+description = "Safe cross-platform linker shenanigans"
+documentation = "https://docs.rs/linkme"
+edition = "2021"
+keywords = ["linkage"]
+license = "MIT OR Apache-2.0"
+repository = "https://github.com/dtolnay/linkme"
+rust-version = "1.62"
+
+[[test]]
+name = "module_2015"
+edition = "2015"
+
+[features]
+used_linker = ["linkme-impl/used_linker"]
+
+[dependencies]
+linkme-impl = { version = "=0.3.9", path = "impl" }
+
+[dev-dependencies]
+once_cell = "1.16"
+rustversion = "1.0"
+trybuild = { version = "1.0.66", features = ["diff"] }
+
+[workspace]
+members = ["impl", "tests/cortex", "tests/crate"]
+
+[lib]
+doc-scrape-examples = false
+
+[package.metadata.docs.rs]
+targets = ["x86_64-unknown-linux-gnu"]