mirror of
https://github.com/Laurent2916/Diffusers.jl.git
synced 2024-11-09 15:02:02 +00:00
➕ add ProgressMeter
This commit is contained in:
parent
a02feb1b67
commit
a71c40dc6d
|
@ -1,8 +1,8 @@
|
||||||
# This file is machine-generated - editing it directly is not advised
|
# This file is machine-generated - editing it directly is not advised
|
||||||
|
|
||||||
julia_version = "1.9.1"
|
julia_version = "1.9.2"
|
||||||
manifest_format = "2.0"
|
manifest_format = "2.0"
|
||||||
project_hash = "d24809eea0828bfe960e6b7544e6415082911917"
|
project_hash = "986fd7dbfd5253738ff5368d6ec3cd19909b91e6"
|
||||||
|
|
||||||
[[deps.AbstractFFTs]]
|
[[deps.AbstractFFTs]]
|
||||||
deps = ["LinearAlgebra"]
|
deps = ["LinearAlgebra"]
|
||||||
|
@ -195,7 +195,7 @@ version = "3.46.2"
|
||||||
[[deps.CompilerSupportLibraries_jll]]
|
[[deps.CompilerSupportLibraries_jll]]
|
||||||
deps = ["Artifacts", "Libdl"]
|
deps = ["Artifacts", "Libdl"]
|
||||||
uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae"
|
uuid = "e66e0078-7015-5450-92f7-15fbd957f2ae"
|
||||||
version = "1.0.2+0"
|
version = "1.0.5+0"
|
||||||
|
|
||||||
[[deps.CompositionsBase]]
|
[[deps.CompositionsBase]]
|
||||||
git-tree-sha1 = "802bb88cd69dfd1509f6670416bd4434015693ad"
|
git-tree-sha1 = "802bb88cd69dfd1509f6670416bd4434015693ad"
|
||||||
|
@ -900,7 +900,7 @@ version = "0.42.2+0"
|
||||||
[[deps.Pkg]]
|
[[deps.Pkg]]
|
||||||
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
|
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "REPL", "Random", "SHA", "Serialization", "TOML", "Tar", "UUIDs", "p7zip_jll"]
|
||||||
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
|
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
|
||||||
version = "1.9.0"
|
version = "1.9.2"
|
||||||
|
|
||||||
[[deps.PlotThemes]]
|
[[deps.PlotThemes]]
|
||||||
deps = ["PlotUtils", "Statistics"]
|
deps = ["PlotUtils", "Statistics"]
|
||||||
|
@ -961,6 +961,12 @@ git-tree-sha1 = "80d919dee55b9c50e8d9e2da5eeafff3fe58b539"
|
||||||
uuid = "33c8b6b6-d38a-422a-b730-caa89a2f386c"
|
uuid = "33c8b6b6-d38a-422a-b730-caa89a2f386c"
|
||||||
version = "0.1.4"
|
version = "0.1.4"
|
||||||
|
|
||||||
|
[[deps.ProgressMeter]]
|
||||||
|
deps = ["Distributed", "Printf"]
|
||||||
|
git-tree-sha1 = "d7a7aef8f8f2d537104f170139553b14dfe39fe9"
|
||||||
|
uuid = "92933f4c-e287-5a05-a399-4b506db050ca"
|
||||||
|
version = "1.7.2"
|
||||||
|
|
||||||
[[deps.Qt5Base_jll]]
|
[[deps.Qt5Base_jll]]
|
||||||
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Pkg", "Xorg_libXext_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "xkbcommon_jll"]
|
deps = ["Artifacts", "CompilerSupportLibraries_jll", "Fontconfig_jll", "Glib_jll", "JLLWrappers", "Libdl", "Libglvnd_jll", "OpenSSL_jll", "Pkg", "Xorg_libXext_jll", "Xorg_libxcb_jll", "Xorg_xcb_util_image_jll", "Xorg_xcb_util_keysyms_jll", "Xorg_xcb_util_renderutil_jll", "Xorg_xcb_util_wm_jll", "Zlib_jll", "xkbcommon_jll"]
|
||||||
git-tree-sha1 = "0c03844e2231e12fda4d0086fd7cbe4098ee8dc5"
|
git-tree-sha1 = "0c03844e2231e12fda4d0086fd7cbe4098ee8dc5"
|
||||||
|
|
|
@ -7,4 +7,5 @@ version = "0.1.0"
|
||||||
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
|
Flux = "587475ba-b771-5e3f-ad9e-33799f191a9c"
|
||||||
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
|
NNlib = "872c559c-99b0-510c-b3b7-b6c96a88d5cd"
|
||||||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80"
|
||||||
|
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
|
||||||
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
Revise = "295af30f-e4ad-537b-8983-00126c2a3abe"
|
||||||
|
|
Loading…
Reference in a new issue