cargo.toml

This commit is contained in:
Sander Hautvast 2022-04-28 16:20:24 +02:00
parent bdd1dcea06
commit d6afa7a5ef
2 changed files with 23 additions and 0 deletions

16
Cargo.lock generated Normal file
View file

@ -0,0 +1,16 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "rltk"
version = "0.1.0"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "unicode-segmentation"
version = "1.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"

7
Cargo.toml Normal file
View file

@ -0,0 +1,7 @@
[package]
name = "rltk"
version = "0.1.0"
edition = "2021"
[dependencies]
unicode-segmentation = "1.9.0"