diff --git a/Cargo.lock b/Cargo.lock index c5461d0..9a9e79c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -99,7 +99,7 @@ dependencies = [ [[package]] name = "rtracy" -version = "0.1.1" +version = "0.1.2" dependencies = [ "bincode", "lz4", diff --git a/Cargo.toml b/Cargo.toml index 4527250..3875d21 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rtracy" -version = "0.1.1" +version = "0.1.2" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -9,4 +9,4 @@ edition = "2021" bincode = "2.0.0-rc.3" lz4 = "1.24.0" num-traits = "0.2" -num-derive = "0.4.2" \ No newline at end of file +num-derive = "0.4.2" diff --git a/README.md b/README.md index e565c30..6d7d775 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # RTracy server This is server for streaming .utacy files generated by https://github.com/ParadiseSS13/byond-tracy to tracy https://github.com/wolfpld/tracy profiler -Works with Tracy 0.11 (protocol 66) +Works with Tracy 0.11.1 (protocol 69) This server allow partial streaming of large snapshots to prevent huge memory usage diff --git a/src/server.rs b/src/server.rs index 9e3162c..fc23740 100644 --- a/src/server.rs +++ b/src/server.rs @@ -212,9 +212,9 @@ pub fn handle_client(stream: TcpStream, header: &UTracyHeader, locations: &Vec(&self, encoder: &mut E) -> Result<(), EncodeError> { return self.to_u8().unwrap().encode(encoder); } -} \ No newline at end of file +}