update deps to build on stable/nightly as of 11-30-24

This commit is contained in:
2024-11-30 21:11:11 -05:00
parent 974963d27c
commit 69e8d97e3b
3 changed files with 410 additions and 358 deletions

729
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package] [package]
name = "rfile" name = "rfile"
version = "0.2.0" version = "0.2.1"
edition = "2021" edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -8,35 +8,35 @@ edition = "2021"
[dependencies] [dependencies]
# basic logging utilities # basic logging utilities
# Rocket sets up its own logger so we just need the log crate to talk to its global hook # Rocket sets up its own logger so we just need the log crate to talk to its global hook
log = "0.4.17" log = "~0.4"
# some libs for easy async and threading # some libs for easy async and threading
futures = "0.3.23" futures = "~0.3"
tokio = { version = "1.20.1", features = ["full"] } tokio = { version = "~1.41", features = ["full"] }
rayon = "1.5.3" rayon = "~1.10"
# file change events # file change events
notify = "4.0.17" notify = "~4.0"
#http related stuff #http related stuff
rocket = "0.5.0-rc.2" rocket = "~0.5"
mime = "0.3.16" mime = "~0.3"
# database # database
rusqlite = "0.28.0" rusqlite = "~0.32"
# crypt stuff # crypt stuff
#ring = { version = "0.16.20", features = ["std"] } #ring = { version = "0.16.20", features = ["std"] }
data-encoding = "2.3.2" data-encoding = "~2.6"
blake3 = { version = "1.3.1", features = ["std", "rayon"] } blake3 = { version = "~1.5", features = ["std", "rayon"] }
# compression # compression
flate2 = { version = "1.0.24" } flate2 = { version = "~1.0" }
tar = "0.4.38" tar = "~0.4"
# and some stuff I don't know why it isn't in std # and some stuff I don't know why it isn't in std
rand = { version = "0.8.5", features = ["std", "alloc", "getrandom", "std_rng", "log", "nightly"] } rand = { version = "~0.8", features = ["std", "alloc", "getrandom", "std_rng", "log"] }
lazy_static = "1.4.0" lazy_static = "~1.4"
regex = "1.5.6" regex = "~1.11"
chrono = "0.4.22" chrono = "~0.4"
memmap2 = "0.5.7" memmap2 = "~0.9"

View File

@@ -1,6 +1,3 @@
#![feature(proc_macro_hygiene, decl_macro)]
#![feature(seek_stream_len)]
#[allow(unused_imports)] #[allow(unused_imports)]
#[allow(unused_macros)] #[allow(unused_macros)]
/* Logging crates */ /* Logging crates */