From 2c9b7fd73a80500d5875b33ca5848699f2121f5a Mon Sep 17 00:00:00 2001 From: Dan Gohman Date: Mon, 20 Aug 2018 16:30:30 -0700 Subject: [PATCH] Add "no-std" category to crates supporting no-std. And add "wasm" category to cranelift-wasm. --- lib/bforest/Cargo.toml | 1 + lib/codegen/Cargo.toml | 1 + lib/entity/Cargo.toml | 1 + lib/frontend/Cargo.toml | 1 + lib/module/Cargo.toml | 1 + lib/native/Cargo.toml | 1 + lib/serde/Cargo.toml | 1 + lib/simplejit/Cargo.toml | 1 + lib/umbrella/Cargo.toml | 1 + lib/wasm/Cargo.toml | 1 + 10 files changed, 10 insertions(+) diff --git a/lib/bforest/Cargo.toml b/lib/bforest/Cargo.toml index ab244abc80..72f146adb9 100644 --- a/lib/bforest/Cargo.toml +++ b/lib/bforest/Cargo.toml @@ -6,6 +6,7 @@ description = "A forest of B+-trees" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" repository = "https://github.com/CraneStation/cranelift" +categories = ["no-std"] readme = "README.md" keywords = ["btree", "forest", "set", "map"] diff --git a/lib/codegen/Cargo.toml b/lib/codegen/Cargo.toml index b8333e0bf8..1e55075751 100644 --- a/lib/codegen/Cargo.toml +++ b/lib/codegen/Cargo.toml @@ -6,6 +6,7 @@ description = "Low-level code generator library" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" repository = "https://github.com/CraneStation/cranelift" +categories = ["no-std"] readme = "README.md" keywords = ["compile", "compiler", "jit"] build = "build.rs" diff --git a/lib/entity/Cargo.toml b/lib/entity/Cargo.toml index e96837669b..6bc4a928bf 100644 --- a/lib/entity/Cargo.toml +++ b/lib/entity/Cargo.toml @@ -6,6 +6,7 @@ description = "Data structures using entity references as mapping keys" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" repository = "https://github.com/CraneStation/cranelift" +categories = ["no-std"] readme = "README.md" keywords = ["entity", "set", "map"] diff --git a/lib/frontend/Cargo.toml b/lib/frontend/Cargo.toml index d231b017f8..d0b84b6e3a 100644 --- a/lib/frontend/Cargo.toml +++ b/lib/frontend/Cargo.toml @@ -5,6 +5,7 @@ version = "0.19.0" description = "Cranelift IR builder helper" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" +categories = ["no-std"] repository = "https://github.com/CraneStation/cranelift" readme = "README.md" diff --git a/lib/module/Cargo.toml b/lib/module/Cargo.toml index 33e04dbcd8..ef7427f8b9 100644 --- a/lib/module/Cargo.toml +++ b/lib/module/Cargo.toml @@ -5,6 +5,7 @@ authors = ["The Cranelift Project Developers"] description = "Support for linking functions and data with Cranelift" repository = "https://github.com/CraneStation/cranelift" documentation = "https://cranelift.readthedocs.io/" +categories = ["no-std"] license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" diff --git a/lib/native/Cargo.toml b/lib/native/Cargo.toml index f05126a27b..94e4c789f4 100644 --- a/lib/native/Cargo.toml +++ b/lib/native/Cargo.toml @@ -4,6 +4,7 @@ version = "0.19.0" authors = ["The Cranelift Project Developers"] description = "Support for targeting the host with Cranelift" repository = "https://github.com/CraneStation/cranelift" +categories = ["no-std"] license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" diff --git a/lib/serde/Cargo.toml b/lib/serde/Cargo.toml index b1224c9a12..0ed69ebad8 100644 --- a/lib/serde/Cargo.toml +++ b/lib/serde/Cargo.toml @@ -5,6 +5,7 @@ authors = ["The Cranelift Project Developers"] description = "Serializer/Deserializer for Cranelift IR" repository = "https://github.com/CraneStation/cranelift" license = "Apache-2.0 WITH LLVM-exception" +categories = ["no-std"] readme = "README.md" keywords = ["webassembly", "serde"] diff --git a/lib/simplejit/Cargo.toml b/lib/simplejit/Cargo.toml index fc459471f8..4ed87adf58 100644 --- a/lib/simplejit/Cargo.toml +++ b/lib/simplejit/Cargo.toml @@ -5,6 +5,7 @@ authors = ["The Cranelift Project Developers"] description = "A simple JIT library backed by Cranelift" repository = "https://github.com/CraneStation/cranelift" documentation = "https://cranelift.readthedocs.io/" +categories = ["no-std"] license = "Apache-2.0 WITH LLVM-exception" readme = "README.md" diff --git a/lib/umbrella/Cargo.toml b/lib/umbrella/Cargo.toml index 1f2d8bb605..e7530aa24e 100644 --- a/lib/umbrella/Cargo.toml +++ b/lib/umbrella/Cargo.toml @@ -6,6 +6,7 @@ description = "Umbrella for commonly-used cranelift crates" license = "Apache-2.0 WITH LLVM-exception" documentation = "https://cranelift.readthedocs.io/" repository = "https://github.com/CraneStation/cranelift" +categories = ["no-std"] readme = "README.md" keywords = ["compile", "compiler", "jit"] diff --git a/lib/wasm/Cargo.toml b/lib/wasm/Cargo.toml index df35edb25f..61068ddeca 100644 --- a/lib/wasm/Cargo.toml +++ b/lib/wasm/Cargo.toml @@ -5,6 +5,7 @@ authors = ["The Cranelift Project Developers"] description = "Translator from WebAssembly to Cranelift IR" repository = "https://github.com/CraneStation/cranelift" license = "Apache-2.0 WITH LLVM-exception" +categories = ["no-std", "wasm"] readme = "README.md" keywords = ["webassembly", "wasm"]