From 55ce1087e87b48384abf90bbedb5da03b42f6996 Mon Sep 17 00:00:00 2001 From: SoniEx2 Date: Sat, 5 Feb 2022 12:55:27 -0300 Subject: [Project] Anycast Rust library for casting to Any. --- Cargo.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..bd11c99 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "anycast" +version = "1.0.0" +authors = ["SoniEx2 "] +license = "AGPL-3.0-or-later" +description = "Allows upcasting to Any" +edition = "2021" +repository = "https://soniex2.autistic.space/git-repos/anycast.git" +readme = "README.md" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[features] +default = ["std"] +std = ["alloc"] +alloc = [] + +[dependencies] -- cgit 1.4.1