Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion mcpp.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,16 @@
[package]
namespace = "mcpplibs"
name = "std-freestanding"
version = "0.5.0"
version = "0.5.1"
description = "The freestanding subset of the C++ standard library as a module — import mcpplibs.std.freestanding"
license = "Apache-2.0"

# The C++ layer, supplied as a subset rather than as a whole standard library.
#
# The distinction needs no capability of its own: this package declares no
# `[package] std-module`, and that absence is what tells the engine `import
# std` is not available here while `import mcpplibs.std.freestanding` is.
provides = ["mcpp:c++-abi=freestanding"]
authors = ["mcpplibs"]
repo = "https://github.com/mcpplibs/std-freestanding"

Expand Down
Loading