From c7bb16e564e5ca37f6a66916a74d6f030ccb592c Mon Sep 17 00:00:00 2001 From: Mateusz Jakub Fila Date: Sun, 20 Oct 2024 17:05:07 +0200 Subject: [PATCH] use fork of distributed with fix for thread-safety --- Project.toml | 6 +++--- benchmark/Project.toml | 3 +++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Project.toml b/Project.toml index 3bbcdd9..9b6e7b7 100644 --- a/Project.toml +++ b/Project.toml @@ -17,9 +17,9 @@ MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" -[sources.GraphMLReader] -rev = "master" -url = "https://github.com/SmalRat/GraphMLReader.jl" +[sources] +Distributed = {rev = "jps/threadsafe_workerstate", url = "https://github.com/JamesWrigley/Distributed.jl"} +GraphMLReader = {rev = "master", url = "https://github.com/SmalRat/GraphMLReader.jl"} [compat] Aqua = "0.8" diff --git a/benchmark/Project.toml b/benchmark/Project.toml index 40f49fa..4a03c3a 100644 --- a/benchmark/Project.toml +++ b/benchmark/Project.toml @@ -1,5 +1,6 @@ [deps] BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" +Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b" FrameworkDemo = "cfbf7e84-66d2-421e-b147-9edb7a8672d2" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" @@ -7,6 +8,7 @@ GraphMLReader = "8e6830a9-644c-4485-8539-40ee18e3ca8c" [compat] BenchmarkTools = "1.5" +Distributed = "1.11" FrameworkDemo = "0.1" GraphMLReader = "0.1" Plots = "1.40" @@ -14,5 +16,6 @@ Printf = "1.11" julia = "1.11" [sources] +Distributed = {rev = "jps/threadsafe_workerstate", url = "https://github.com/JamesWrigley/Distributed.jl"} FrameworkDemo = {path = ".."} GraphMLReader = {rev = "master", url = "https://github.com/SmalRat/GraphMLReader.jl"}