resize & move

This commit is contained in:
MeexReay 2024-04-24 12:19:05 +03:00
parent fb3e351a56
commit 8a8b8b7464
3 changed files with 123 additions and 12 deletions

21
Cargo.lock generated
View file

@ -37,6 +37,12 @@ dependencies = [
"zerocopy",
]
[[package]]
name = "allocator-api2"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
[[package]]
name = "android-activity"
version = "0.5.2"
@ -551,12 +557,23 @@ name = "fonotes"
version = "0.1.0"
dependencies = [
"arboard",
"fontdue",
"rdev",
"softbuffer",
"tiny-skia",
"winit",
]
[[package]]
name = "fontdue"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9099a2f86b8e674b75d03ff154b3fe4c5208ed249ced8d69cc313a9fa40bb488"
dependencies = [
"hashbrown",
"ttf-parser",
]
[[package]]
name = "foreign-types"
version = "0.3.2"
@ -625,6 +642,10 @@ name = "hashbrown"
version = "0.14.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
dependencies = [
"ahash",
"allocator-api2",
]
[[package]]
name = "hermit-abi"