diff --git a/Cargo.lock b/Cargo.lock index dc4374da0..0cbd5388d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1451,6 +1451,7 @@ dependencies = [ name = "gosub_html5" version = "0.1.0" dependencies = [ + "criterion", "derive_more", "gosub_css3", "gosub_shared", @@ -3601,18 +3602,18 @@ dependencies = [ [[package]] name = "thiserror" -version = "1.0.59" +version = "1.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f0126ad08bff79f29fc3ae6a55cc72352056dfff61e3ff8bb7129476d44b23aa" +checksum = "c546c80d6be4bc6a00c0f01730c08df82eaa7a7a61f11d656526506112cc1709" dependencies = [ "thiserror-impl", ] [[package]] name = "thiserror-impl" -version = "1.0.59" +version = "1.0.61" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d1cd413b5d558b4c5bf3680e324a6fa5014e7b7c067a51e69dbdf47eb7148b66" +checksum = "46c3384250002a6d5af4d114f2845d37b57521033f30d5c3f46c4d70e1197533" dependencies = [ "proc-macro2", "quote", diff --git a/crates/gosub_config/Cargo.toml b/crates/gosub_config/Cargo.toml index 4f7f5cf9f..598677459 100644 --- a/crates/gosub_config/Cargo.toml +++ b/crates/gosub_config/Cargo.toml @@ -9,7 +9,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = {version = "1.0", features = ["preserve_order"]} serde_derive = "1.0" lazy_static = "1.4" -thiserror = "1.0.59" +thiserror = "1.0.61" wildmatch = "2.3.3" log = "0.4.21" testing_logger = "0.1.1" diff --git a/crates/gosub_html5/Cargo.toml b/crates/gosub_html5/Cargo.toml index 8cb481e41..53d4017cd 100644 --- a/crates/gosub_html5/Cargo.toml +++ b/crates/gosub_html5/Cargo.toml @@ -11,7 +11,7 @@ gosub_css3 = { path = "../gosub_css3", features = [] } derive_more = "0.99" phf = { version = "0.11.2", features = ["macros"] } lazy_static = "1.4" -thiserror = "1.0.59" +thiserror = "1.0.61" url = { version = "2.5.0", features = [] } log = { version = "0.4.21", features = [] } diff --git a/crates/gosub_net/Cargo.toml b/crates/gosub_net/Cargo.toml index 3c350b2b0..1122c6704 100644 --- a/crates/gosub_net/Cargo.toml +++ b/crates/gosub_net/Cargo.toml @@ -9,7 +9,7 @@ license = "MIT" gosub_shared = { path = "../gosub_shared", features = [] } gosub_config = { path = "../gosub_config", features = [] } derive_more = "0.99" -thiserror = "1.0.59" +thiserror = "1.0.61" ureq = "2.9.7" anyhow = "1.0.86" log = "0.4.21" diff --git a/crates/gosub_shared/Cargo.toml b/crates/gosub_shared/Cargo.toml index 62bc81795..2212cff8d 100644 --- a/crates/gosub_shared/Cargo.toml +++ b/crates/gosub_shared/Cargo.toml @@ -7,7 +7,7 @@ license = "MIT" [dependencies] chardet = "0.2.4" -thiserror = "1.0.59" +thiserror = "1.0.61" url = "2.5.0" anyhow = "1.0.86" lazy_static = "1.4.0" diff --git a/crates/gosub_v8/Cargo.toml b/crates/gosub_v8/Cargo.toml index 529fae368..96ac1cd7c 100644 --- a/crates/gosub_v8/Cargo.toml +++ b/crates/gosub_v8/Cargo.toml @@ -10,7 +10,7 @@ license = "MIT" [dependencies] gosub_shared = { path = "../gosub_shared" } gosub_webexecutor = { path = "../gosub_webexecutor" } -thiserror = "1.0.59" +thiserror = "1.0.61" v8 = "0.92.0" anyhow = "1.0.86" serde_json = "1.0.117" \ No newline at end of file diff --git a/crates/gosub_webexecutor/Cargo.toml b/crates/gosub_webexecutor/Cargo.toml index 4080050c4..d762f4bf3 100644 --- a/crates/gosub_webexecutor/Cargo.toml +++ b/crates/gosub_webexecutor/Cargo.toml @@ -10,7 +10,7 @@ gosub_shared = { path = "../gosub_shared" } colored = "2.1.0" derive_more = "0.99" lazy_static = "1.4" -thiserror = "1.0.59" +thiserror = "1.0.61" v8 = "0.92.0" anyhow = "1.0.86" paste = "1.0.15"