diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-11-01 20:35:40 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-11-01 20:35:40 +0100 |
commit | f40a40e555f0041e8f7631e26adadd5cc47a5768 (patch) | |
tree | a0c933d47e32c5cfc9747dc0b6b9b0001e738555 /Cargo.lock | |
parent | Frontend: Result component: Add basic structure (diff) | |
download | OSSE-f40a40e555f0041e8f7631e26adadd5cc47a5768.tar.gz OSSE-f40a40e555f0041e8f7631e26adadd5cc47a5768.tar.bz2 OSSE-f40a40e555f0041e8f7631e26adadd5cc47a5768.zip |
Frontend: Result component: Use the stylist crate to apply basic css
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock index 72b7a20..4f92603 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -620,6 +620,7 @@ dependencies = [ "gloo-net", "itertools", "lib", + "stylist", "urlencoding", "wasm-bindgen", "wasm-bindgen-futures", @@ -1169,6 +1170,9 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c" dependencies = [ "cfg-if 1.0.0", + "js-sys", + "wasm-bindgen", + "web-sys", ] [[package]] @@ -1273,6 +1277,15 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "68783febc7782c6c5cb401fbda4de5a9898be1762314da0bb2c10ced61f18b0c" [[package]] +name = "litrs" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9275e0933cf8bb20f008924c0cb07a0692fe54d8064996520bf998de9eb79aa" +dependencies = [ + "proc-macro2", +] + +[[package]] name = "local-channel" version = "0.1.3" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1372,6 +1385,12 @@ dependencies = [ ] [[package]] +name = "minimal-lexical" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a" + +[[package]] name = "miniz_oxide" version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1497,6 +1516,16 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" [[package]] +name = "nom" +version = "7.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36" +dependencies = [ + "memchr", + "minimal-lexical", +] + +[[package]] name = "num_cpus" version = "1.13.1" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -2255,6 +2284,50 @@ dependencies = [ ] [[package]] +name = "stylist" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7687c91ed89b4f6a80e41a354263555980187b6c9ca6c0408089c6781dca4377" +dependencies = [ + "fastrand", + "instant", + "once_cell", + "stylist-core", + "stylist-macros", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "stylist-core" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "25355f8d91ef7d250ab53f1f8411b458f54c7dcf76a1cfef47355c0b1d0bfed9" +dependencies = [ + "nom", + "once_cell", + "thiserror", + "wasm-bindgen", +] + +[[package]] +name = "stylist-macros" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7930b612c9250dac3735aa35fcc1084e51ca84bf7a270f23856df08598821251" +dependencies = [ + "itertools", + "litrs", + "log", + "nom", + "proc-macro-error", + "proc-macro2", + "quote", + "stylist-core", + "syn", +] + +[[package]] name = "syn" version = "1.0.102" source = "registry+https://github.com/rust-lang/crates.io-index" |