Skip to content

Commit c5aedac

Browse files
committed
sunfish 0.7
1 parent 243fb0c commit c5aedac

File tree

73 files changed

+92
-91
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

73 files changed

+92
-91
lines changed

Cargo.lock

Lines changed: 16 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,6 @@ overflow-checks = false
2323
[profile.release]
2424
lto = true
2525
strip = true
26+
27+
[patch.crates-io]
28+
sunfish = { git = "https://github.com/tangramdotdev/sunfish" }

crates/app/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ default = [
7070

7171
[build-dependencies]
7272
anyhow = { version = "1", features = ["backtrace"] }
73-
sunfish = "0.6"
73+
sunfish = "0.7"
7474
tangram_app_model_index_client = { path = "routes/repos/_/models/_/index/client", optional = true, artifact = "bin", target = "wasm32-unknown-unknown" }
7575
tangram_app_new_model_client = { path = "routes/repos/_/models/new/client", optional = true, artifact = "bin", target = "wasm32-unknown-unknown" }
7676
tangram_app_new_monitor_client = { path = "routes/repos/_/models/_/monitors/new/client", optional = true, artifact = "bin", target = "wasm32-unknown-unknown" }
@@ -107,7 +107,7 @@ serde = { version = "1", features = ["derive"] }
107107
serde_json = "1"
108108
sha2 = "0.10"
109109
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
110-
sunfish = "0.6"
110+
sunfish = "0.7"
111111
tangram_app_context = { path = "context" }
112112
tangram_app_core = { path = "core" }
113113
tangram_app_layouts = { path = "layouts" }

crates/app/context/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ path = "lib.rs"
99

1010
[dependencies]
1111
anyhow = { version = "1", features = ["backtrace"] }
12-
sunfish = "0.6"
12+
sunfish = "0.7"
1313
tangram_app_core = { path = "../core" }

crates/app/core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ rust-s3 = { version = "0.28", default-features = false, features = ["tokio-rustl
3535
serde = { version = "1", features = ["derive"] }
3636
serde_json = "1"
3737
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
38-
sunfish = "0.6"
38+
sunfish = "0.7"
3939
tangram_app_migrations = { path = "../migrations" }
4040
tangram_app_monitor_event = { path = "../monitor_event" }
4141
tangram_app_production_metrics = { path = "../production_metrics" }

crates/app/layouts/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ hyper = { version = "0.14", features = ["full"] }
1515
pinwheel = "0.2"
1616
serde = { version = "1", features = ["derive"] }
1717
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
18-
sunfish = "0.6"
18+
sunfish = "0.7"
1919
tangram_app_context = { path = "../context" }
2020
tangram_app_core = { path = "../core" }
2121
tangram_app_ui = { path = "../../app/ui" }

crates/app/routes/health/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ num = "0.4"
1818
serde = { version = "1", features = ["derive"] }
1919
serde_json = "1"
2020
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
21-
sunfish = "0.6"
21+
sunfish = "0.7"
2222
tangram_app_context = { path = "../../../context" }
2323
tangram_app_core = { path = "../../../core" }
2424
tangram_core = { path = "../../../../core" }

crates/app/routes/index/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pinwheel = "0.2"
1616
serde = { version = "1", features = ["derive"] }
1717
serde_urlencoded = "0.7"
1818
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
19-
sunfish = "0.6"
19+
sunfish = "0.7"
2020
tangram_app_context = { path = "../../../context" }
2121
tangram_app_core = { path = "../../../core" }
2222
tangram_app_layouts = { path = "../../../layouts" }

crates/app/routes/login/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ serde = { version = "1", features = ["derive"] }
2020
serde_json = "1"
2121
serde_urlencoded = "0.7"
2222
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
23-
sunfish = "0.6"
23+
sunfish = "0.7"
2424
tangram_app_context = { path = "../../../context" }
2525
tangram_app_core = { path = "../../../core" }
2626
tangram_app_layouts = { path = "../../../layouts" }

crates/app/routes/organizations/_/edit/server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pinwheel = "0.2"
1616
serde = { version = "1", features = ["derive"] }
1717
serde_urlencoded = "0.7"
1818
sqlx = { version = "0.5", default-features = false, features = ["any", "chrono", "postgres", "runtime-tokio-rustls", "sqlite"] }
19-
sunfish = "0.6"
19+
sunfish = "0.7"
2020
tangram_app_context = { path = "../../../../../context" }
2121
tangram_app_core = { path = "../../../../../core" }
2222
tangram_app_layouts = { path = "../../../../../layouts" }

0 commit comments

Comments
 (0)