Compare commits

..

2 Commits

4 changed files with 17 additions and 12 deletions

18
.gitignore vendored
View File

@ -1,5 +1,17 @@
# Added by cargo
# Ignore swap files from text editors.
*.swp
/target
# Ignore compiled files.
*.o
*.so
*.rlib
*.dll
*.exe
# Ignore files/directories generated by Cargo.
/target/
# Remove Cargo.lock from gitignore if creating an executable,
# leave it for libraries.
# More information here: http://doc.crates.io/guide.html#cargotoml-vs-cargolock
Cargo.lock

7
Cargo.lock generated
View File

@ -1,7 +0,0 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "rune"
version = "0.4.0"

View File

@ -1,6 +1,6 @@
[package]
name = "rune"
version = "0.4.0"
version = "0.4.1"
edition = "2024"
description = "A lexical analysis library."
repository = "https://workshop.cybermages.tech/CyberMages/rune"

View File

@ -31,7 +31,7 @@ Then add this to your Cargo.toml file.
```toml
[dependencies]
rune = { version = "0.3.0", registry = "cybermages" }
rune = { version = "0.4.1", registry = "cybermages" }
```
---