Skip to content

Commit

Permalink
Merge pull request #36 from McCue-Software-Solutions/bump-jdk
Browse files Browse the repository at this point in the history
Add more libraries and update docs
  • Loading branch information
bowbahdoe authored Oct 14, 2023
2 parents 79cd02c + 2e0dd40 commit 0e36e63
Show file tree
Hide file tree
Showing 6 changed files with 65 additions and 74 deletions.
1 change: 0 additions & 1 deletion .env

This file was deleted.

12 changes: 0 additions & 12 deletions .github/ISSUE_TEMPLATE/crate-addition-or-update.md

This file was deleted.

45 changes: 0 additions & 45 deletions CRATE_POLICY.md

This file was deleted.

23 changes: 7 additions & 16 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,35 +1,26 @@
# Rust Playground
# Java Playground

This is the home of the [Rust Playground][real],
also [hosted by Integer 32][us].
This is the home of the [Rust Playground][real].

[real]: https://play.rust-lang.org/
[us]: https://play.integer32.com/
[real]: https://java-playground.com

## What's it do?

The playground allows you to experiment with Rust before you install
The playground allows you to experiment with Java before you install
it locally, or in any other case where you might not have the compiler
available.

It has a number of features, including:

1. A nice, unobtrusive editor with syntax highlighting.
1. The ability to compile in debug or release mode against the current
stable, beta, or nightly version of Rust.
1. The top 100 popular crates (ranked by all-time downloads), crates
that are part of the [Rust Cookbook][] and all of their
dependencies are available for use!
1. The ability to run against the latest stable, early access, and valhalla prototype JDKs.
1. A selection of libraries from Maven Central.
1. The ability to quickly load and save your code to a
GitHub [Gist][gist] and share it with your friends.
1. [rustfmt][] and [Clippy][clippy] can be run against the source code.
1. The ability to see the LLVM IR, assembly, or Rust MIR for the
source code.


[Rust Cookbook]: https://rust-lang-nursery.github.io/rust-cookbook/
[gist]: https://gist.github.com/
[rustfmt]: https://github.com/rust-lang/rustfmt
[clippy]: https://github.com/rust-lang/rust-clippy

## Architecture

Expand Down
4 changes: 4 additions & 0 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
The Java Playground is a fork of The Rust Playground. You can report security issues
to me at `[email protected]`, but chances are if we have an issue they have the same one too.
So report to them as well if it is important.

The Rust Playground follows the same security reporting procedures as
the main Rust organization. If you have found a vulnerability in the
Playground, please report it according to [the Rust security
Expand Down
54 changes: 54 additions & 0 deletions compiler/base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,60 @@
<version>2.15.2</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-afterburner</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-pcollections</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-yaml</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-properties</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-cbor</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-smile</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-toml</artifactId>
<version>2.15.3</version>
</dependency>

<dependency>
<groupId>io.vavr</groupId>
<artifactId>vavr</artifactId>
Expand Down

0 comments on commit 0e36e63

Please sign in to comment.