Split most of the crate into masonry_core sub-crate.

This change is done very carefully to minimize the number of changed files, and use almost only file renames.
This is both for avoiding merge conflicts, keeping file history unbroken, and keeping the PR easy to review.

A future PR will rename masonry to masonry_core, masonry_winit to masonry change all the doc tests and snapshots that depend on those names, etc.

After *that*, future PRs will have actual code changes splitting winit away from masonry_core.
This commit is contained in:
Olivier FAURE 2025-03-23 16:40:55 +01:00
parent 25a446029f
commit f4ae5497ee
335 changed files with 404 additions and 355 deletions

37
Cargo.lock generated
View File

@ -1930,6 +1930,43 @@ dependencies = [
"winit", "winit",
] ]
[[package]]
name = "masonry_winit"
version = "0.2.0"
dependencies = [
"accesskit",
"accesskit_winit",
"anymap3",
"assert_matches",
"cursor-icon",
"dpi",
"float-cmp",
"futures-intrusive",
"image",
"insta",
"keyboard-types",
"masonry",
"nv-flip",
"once_cell",
"parley",
"pollster",
"profiling",
"serde",
"serde_json",
"smallvec",
"time",
"tracing",
"tracing-subscriber",
"tracing-tracy",
"tracing_android_trace",
"tree_arena",
"vello",
"web-time",
"wgpu",
"wgpu-profiler",
"winit",
]
[[package]] [[package]]
name = "matchers" name = "matchers"
version = "0.1.0" version = "0.1.0"

View File

@ -4,6 +4,7 @@ members = [
"xilem", "xilem",
"xilem_core", "xilem_core",
"masonry", "masonry",
"masonry_core",
"xilem_web", "xilem_web",
"xilem_web/web_examples/counter", "xilem_web/web_examples/counter",
@ -84,7 +85,7 @@ clippy.wildcard_dependencies = "warn"
# END LINEBENDER LINT SET # END LINEBENDER LINT SET
[workspace.dependencies] [workspace.dependencies]
masonry = { version = "0.2.0", path = "masonry" } masonry = { version = "0.2.0", path = "masonry_core" }
xilem_core = { version = "0.1.0", path = "xilem_core" } xilem_core = { version = "0.1.0", path = "xilem_core" }
tree_arena = { version = "0.1.0", path = "tree_arena" } tree_arena = { version = "0.1.0", path = "tree_arena" }
vello = "0.4.0" vello = "0.4.0"

View File

@ -1,5 +1,5 @@
[package] [package]
name = "masonry" name = "masonry_winit"
version = "0.2.0" version = "0.2.0"
description = "Data-oriented Rust UI design toolkit." description = "Data-oriented Rust UI design toolkit."
keywords = ["gui", "ui", "toolkit"] keywords = ["gui", "ui", "toolkit"]
@ -35,6 +35,8 @@ tracy = [
workspace = true workspace = true
[dependencies] [dependencies]
# TODO - Rename this dependency to masonry_core
masonry.workspace = true
vello.workspace = true vello.workspace = true
wgpu.workspace = true wgpu.workspace = true
parley.workspace = true parley.workspace = true

View File

@ -1,4 +1,4 @@
// Copyright 2018 the Xilem Authors and the Druid Authors // Copyright 2025 the Xilem Authors
// SPDX-License-Identifier: Apache-2.0 // SPDX-License-Identifier: Apache-2.0
//! Masonry gives you a platform to create windows (using [winit] as a backend) each with a tree of widgets. It also gives you tools to inspect that widget tree at runtime, write unit tests on it, and generally have an easier time debugging and maintaining your app. //! Masonry gives you a platform to create windows (using [winit] as a backend) each with a tree of widgets. It also gives you tools to inspect that widget tree at runtime, write unit tests on it, and generally have an easier time debugging and maintaining your app.
@ -117,47 +117,15 @@
reason = "False-positive with dev-dependencies only used in examples" reason = "False-positive with dev-dependencies only used in examples"
) )
)] )]
#![expect(clippy::allow_attributes_without_reason, reason = "Deferred: Noisy")] #![cfg_attr(
// TODO: Remove any items listed as "Deferred" not(test),
expect(
unused_crate_dependencies,
reason = "TODO - Remove masonry_core dependencies from masonry_winit"
)
)]
#![expect(clippy::needless_doctest_main, reason = "Deferred: Noisy")] #![expect(clippy::needless_doctest_main, reason = "Deferred: Noisy")]
#![expect(clippy::should_implement_trait, reason = "Deferred: Noisy")]
#![cfg_attr(not(debug_assertions), expect(unused, reason = "Deferred: Noisy"))]
#![expect(missing_debug_implementations, reason = "Deferred: Noisy")]
#![expect(clippy::cast_possible_truncation, reason = "Deferred: Noisy")]
#![expect(clippy::missing_assert_message, reason = "Deferred: Noisy")]
#![expect(elided_lifetimes_in_paths, reason = "Deferred: Noisy")]
#![expect(unreachable_pub, reason = "Potentially controversial code style")]
#![expect(
unnameable_types,
reason = "Requires lint_reasons rustc feature for exceptions"
)]
#![expect(clippy::todo, reason = "We have a lot of 'real' todos")]
#![expect(
clippy::shadow_unrelated,
reason = "Potentially controversial code style"
)]
#![expect(clippy::single_match, reason = "General policy not decided")]
// TODO - Add logo // TODO - Add logo
#[macro_use] pub use masonry::*;
pub mod util;
#[cfg(doc)]
pub mod doc;
mod passes;
pub mod app;
pub mod core;
pub mod properties;
pub mod testing;
pub mod theme;
pub mod widgets;
pub use vello::peniko::color::palette;
pub use vello::{kurbo, peniko};
pub use {cursor_icon, dpi, parley, vello};
// TODO - Move to core?
pub use util::{AsAny, Handled, UnitPoint};

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c255b328c238880fdd551a2fae2eaa262f073fc048ad0ebf5710930b3d9013c2
size 5041

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7ca5ad62b05497b8384a3cf33a078270b1776de12997fd650a75c22d46309592
size 5048

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f4219042fb8d93f5f75fa08c822c27d6e6d00bfdddc78a88230be58eab3f9c15
size 5046

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:825ba955c58734a2f82f08cbafada08564df81ce7cdba3c91b9f6d9c479739fb
size 826

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b4db579b1ee7ad2f516378ebec6220ef248e27eaed4cff74fe547f522be8d39d
size 751

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4bbfb58f551655a366ad1ecedf7871c4fee22719f066cc14acd11cda197ec0be
size 596

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3646a6dff8195e09caf062b503ab4b122b28b5edf70fc617bd59a3d8eb3824f9
size 1552

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3646a6dff8195e09caf062b503ab4b122b28b5edf70fc617bd59a3d8eb3824f9
size 1552

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:6dbd8018c101682858c4e0bb7b333a3c6d34812733b1fc84deebc71321b30029
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a0a74ae054fd17a3cad39541240cc0d485884ccfa2f1cb67704f42842b45fa0
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2a0a74ae054fd17a3cad39541240cc0d485884ccfa2f1cb67704f42842b45fa0
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a1a6de51ac05daea0f4f6519fd2dd14a3d565aa91329c715464349f59fed430
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1685e280c82638b13da9c61a397ca565d8a52a8bc5bf8bb64b018d6252de31e3
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:33fa0a078f0699b325368df06432172181d091aac8c4d663f3e349cb580a3c42
size 1553

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0a1a6de51ac05daea0f4f6519fd2dd14a3d565aa91329c715464349f59fed430
size 1551

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5a99966990d725daf5772c62605feeaac86a5ec87303b9317542558393190fa
size 1553

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c7b6db884c606a91cc6cb03ab5efad1995f9d5a35f22d7f9370d7b068d114217
size 1550

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3646a6dff8195e09caf062b503ab4b122b28b5edf70fc617bd59a3d8eb3824f9
size 1552

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12b63c65a4a6c932b0bbc81d201a9ea93a867a96f08f73c345dcb24264adb6c4
size 1545

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:60bcb9e47d5a4e4ddec8105e9ff6dc1364a1c0e18f3df17939e1ad2f10ce2034
size 1547

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:878f5c27d5835b195891c3988067e77b65101f51b4d918651572f1e68dd80afe
size 1548

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12b63c65a4a6c932b0bbc81d201a9ea93a867a96f08f73c345dcb24264adb6c4
size 1545

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:12b63c65a4a6c932b0bbc81d201a9ea93a867a96f08f73c345dcb24264adb6c4
size 1545

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:28ad25df2450bacaa6c3da147854eee98ab078c212ab3f1e601f7722d33d0838
size 1550

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2b7d82d24b736ca2563789ac41c2a5696c0c96650dede810ffc0a9c6285ea111
size 1548

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e29f1aa46ab110f9e702d1826868f5ddb81b2e9667b3b9ed4c1e817dc5cd8214
size 1547

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:28ad25df2450bacaa6c3da147854eee98ab078c212ab3f1e601f7722d33d0838
size 1550

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:90f385e9ce2cd45a96c0ee1fee1ba64c38735c93223ca7a7998010fd6c051037
size 1549

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:85a9cbd0fcf21069d359d72c7cfc6add90dd22b7099f2a44cbeaa0814aec87d5
size 1550

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:60bcb9e47d5a4e4ddec8105e9ff6dc1364a1c0e18f3df17939e1ad2f10ce2034
size 1547

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b955377e7a281de6023c89c2e1df74bb022fd79d9b66f61f94935d2745d51f20
size 633

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1a0cc0452c057a6ad53f6387ddc4dd106d9290007d308caf646d50f207982e31
size 788

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d4a0042e505aded45d6d3f980e97bf9812b39f6679d27413d33ca081fafb2c97
size 100

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:44d955df21b773e49b617a35dd7e947c5fa4cd3f2d03f45669fe45c4bb953b82
size 740

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c8a7a6c3b0d099955329c4507df537c585744cbfef667c70330ff4519cacfd40
size 632

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:db92d77f0185fa0a093ab0dedf5015ac990891ebc6caea2c08790ad4b53fe26e
size 726

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:497972bc7a7b0374104f9bd871bb74a24697439b89d2a099e0c72de358857516
size 662

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5107d76df5e0936517691f90ef2249df8d5d50791c899b6bd1c6215830518387
size 673

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:db92d77f0185fa0a093ab0dedf5015ac990891ebc6caea2c08790ad4b53fe26e
size 726

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4370d776f4833a0969b6e2759711a40dd29b5ba1de7ab98f909d4277cf39f989
size 1524

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1c0059bea7b40880476a3dc43c4d1ddd1f865313bb17b39f87f2929c87f4bc13
size 1856

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:adebbe105edd9839a1bb534415c54845bdac3c6282516248906988eabc845322
size 904

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7151dd150c2b41c94049f0d300afc45bc03f2373b9143ea6adf5fa0e47d3067e
size 1624

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b5fc32216fa0af42215981cb6c6e1d893abc6d0514d33417f7d409e265b7a714
size 1300

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3ef0b3823d2f4b9ca2deed9ec5dc96619158a8ed714757f53a6b65e5df51ba5c
size 364

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d53376d692e23b02cbd5ec1c2c305f19dda769cef0f1b66013c954e5f24a45d9
size 349

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d53376d692e23b02cbd5ec1c2c305f19dda769cef0f1b66013c954e5f24a45d9
size 349

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a90c641cb792340812e0057ad2109408a2973272d5a98b10619d89743079571d
size 355

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d53376d692e23b02cbd5ec1c2c305f19dda769cef0f1b66013c954e5f24a45d9
size 349

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b2c09fa1fe70be069709471d7fe6c185b9865bbdee0ff6d9ef062ae241253ee9
size 461

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1f95712cfcf8aed71cbfb537cfd12097aa90bd720f64e94bf7db4bfdc896ef7b
size 469

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76e82f85ba82d1d886892857c3e4d9ecc97adb6a872edfac25bafe277d09ddcd
size 1295

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2417d8ac848db78cd6c45532bc0faf4c8aa37d9700285dc09b311fcae56245c9
size 500

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:2d0271dc7be66c2d4f98f7e8697dd1d2e8ceebea957a6e441a0d607de0818e2f
size 1455

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:76c8e49bcb7f16fe8f59ee5b953c289acff1127a2cd4522e9feb7e7a7778828a
size 7128

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9ca1d35041286135dd96103a37f2ee421aa1aaec72337d0efa923cc0c26c62d0
size 561

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f319a95464b7eddee77ed715b58cd5b9b2a72e2ab41c5f7a6cbc4f48b031c852
size 4864

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad65269327ae551b7f71770dda2a8bbba8dab9be78c75f4395d58c0ed9d125b2
size 974

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b46d3bc93732256e594bcb259ab804f2dcef6785898096676d2b555a02ab8f0f
size 709

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:66b36a0b8cf1ce03f3674dff8c8b7f16e513b6d472429543f11fcd3d473d8e82
size 1101

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e035639b39bb601ca93d44bc65c0ee76a11cfc3091a62d3b800b7f89b3ecde78
size 1133

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14cd908490c961654aa691a4e15b6f495f475711892255ca7b90e7affa8256a2
size 1085

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:7cc843291ac84c7d42dd8df3eacdff744de3444ca4d9f32b99a24d082fa7f4d7
size 1068

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:b024c85a6bafaa13cc9fac22284d6ed5749e9b2e439d2a870d61862e656b9133
size 338

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5053f7d46e195e08fc65d39017ae1cbfe84a7be12c4b29c8beede5e27d100980
size 1161

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a5a5f0fd84d3168574b0377da90d305014e35b1322081713212731ea9dc5882
size 840

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:0fa2159678dad3634a25809db4ea712f0e6edeba17c31389c44b19026e838f72
size 1155

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:4a2a9fe113a692bf9d9abcacac56198d7ac998417073f49778bf02eb753f2a7e
size 1166

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cde275cfd21f59878bcad493f063485c252a2ff50659d70f9a5b3cc2ea0bfef9
size 1173

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:369fea2d8d6e3befe3f1a437f47165626f83b7f4ad4557fe86ce44d9f0c0277d
size 805

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d29ae0bfb0ac202c1340f02ed8dec165efbece19aae8ecda96b516366d7a1a98
size 821

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5eeb8e87590f2ada73fc365fe21e89b845519215e7334ba173b68b201a539163
size 1173

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc02ee78a26fc0301ed6ddf7a2f502bc258d0d64ba657da6f64eb6d6d79d38d6
size 225

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:be0828a530c470eddb9276de340c5b34410706f180aa362fc97a44956334a3b5
size 227

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad31c8235862ecc95130873db0630592fdd3bcaa3a21be6c7e6dcd6c373507e8
size 227

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:1bfc9c536b3268c20a5ec4e0326ef253b05945c8040758b423b4fa5a7f836d7d
size 91

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:cdb271f8c4f638d4bfab0ba7bf965482c9f016146fdcc41b5d27a7bc59b563d9
size 241

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:55b5212f4d372f2e74f3f22382d49a1c085f84bbb95581521de474fdc89d5da4
size 3286

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e67487de3e79e5e4f396213f95ba9cd456ceafad197bdab7b60e1f00e760c3ed
size 700

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:14c1cef3531ead8779eeafc7810c331aff3903f9bc531a5999980d654e1d3a3b
size 498

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5dd375f5d89e76f8fa5dd5898321e1e31fa629b84a43bb699afacd3e302ded3e
size 490

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c550bdad4fc20da946c1dee5ad27563c66023f0bf7e2055f3b32f2bf3a6670de
size 693

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e67487de3e79e5e4f396213f95ba9cd456ceafad197bdab7b60e1f00e760c3ed
size 700

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:a22287e1eaf182cd865bc4699cf9f4b0175e998a80a8d092173528175055d769
size 459

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:69ded3dcfc4f288999c1ed50dc5fefa96fbe28a3503280079a1db935f1d63c71
size 2387

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:fc64f032641e3e19d327ce14be39646e985b2658c15d89da157742b7ce63180a
size 3112

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:74c3655d31ff6594bd3e4d6820e872e77d6ebadbedb4fb325ceb08d8e13d84c3
size 3024

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:496f9b270a941ac1bb71539b74ad6cf2c576cb016af2ea337e5960ecd5ded136
size 1192

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c4d54a8a9f9d96a7f48207462ebb3c1fbb1e571887b25a950692ede9cf658c21
size 1135

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:d1b66b9135f40393a67bdc84e03df22d4fff994ce9a0034fd465dbd4327d83da
size 1429

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a276946962c366ab4508baf08e71d746c8ffd5923d8953e4895c70b7af82c23
size 1584

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c0aefc8a4b971e0571485fcb441b3e29923e6fff31325f82e6a6bc6ef65b971e
size 7601

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:e98191fbddd092f724588a9d66210fb678a769b3b6dd24ba1a2b9748a214e1a3
size 7446

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:c5feac713ecf228341a2a6aea32b0a7d50388d7cd32590a99576318ed069ab62
size 7445

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:442e0d2158c4d2d56b15cf33c7994173f6666605d1af8f59d02d35636ca770c9
size 7606

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:08f9230087ea38f7323ae8756ca164a3f25429ed6f59467383d8eb20a00de397
size 7465

Some files were not shown because too many files have changed in this diff Show More