Skip to content

Commit

Permalink
new State module (#31)
Browse files Browse the repository at this point in the history
* first steps

* done

* validation
  • Loading branch information
JieningYu authored Feb 5, 2024
1 parent 1900104 commit 2809c55
Show file tree
Hide file tree
Showing 8 changed files with 857 additions and 3 deletions.
11 changes: 10 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,15 @@
[workspace]
resolver = "2"
members = ["core-old", "primitives", "flare3d", "util/*", "flare3d/examples"]
members = [
"util/*",
"core/*",
"flare3d",
"flare3d/examples",

# Deprecated
"core-old",
"primitives",
]

[workspace.lints.rust]
unsafe_code = "deny"
Expand Down
18 changes: 18 additions & 0 deletions core/state/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[package]
name = "rimecraft-state"
version = "0.1.0"
edition = "2021"
authors = ["JieningYu <[email protected]>"]
description = "Minecraft state holders"
repository = "https://github.com/rimecraft-rs/rimecraft/"
license = "AGPL-3.0-or-later"
categories = []

[badges]
maintenance = { status = "passively-maintained" }

[dependencies]
regex-lite = "0.1"

[lints]
workspace = true
Loading

0 comments on commit 2809c55

Please sign in to comment.