Skip to content

Commit 88848dc

Browse files
authored
Merge pull request #759 from hyperware-ai/release-candidate
1.4.0 rc
2 parents 7318369 + 69fca74 commit 88848dc

File tree

109 files changed

+4094
-2343
lines changed

Some content is hidden

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

109 files changed

+4094
-2343
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hyperdrive_lib"
33
authors = ["Sybil Technologies AG"]
4-
version = "1.3.0"
4+
version = "1.4.0"
55
edition = "2021"
66
description = "A general-purpose sovereign cloud computing platform"
77
homepage = "https://hyperware.ai"

css/hyperware.css

Lines changed: 35 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,36 @@
1-
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@700&display=swap');
1+
@font-face {
2+
font-family: 'chaneyextended';
3+
src: url('/chaneyextended.woff2') format('woff2');
4+
}
5+
6+
@font-face {
7+
font-family: 'Clash Display';
8+
src: url('/ClashDisplay-Variable.woff2') format('woff2');
9+
}
10+
11+
@font-face {
12+
font-family: 'Neue Haas Grotesk';
13+
src: url('/NHaasGroteskTXPro-55Rg.woff') format('woff');
14+
font-weight: 500;
15+
}
16+
17+
@font-face {
18+
font-family: 'Neue Haas Grotesk';
19+
src: url('/NHaasGroteskTXPro-75Bd.woff') format('woff');
20+
font-weight: 700;
21+
}
22+
23+
.display {
24+
font-family: 'chaneyextended', sans-serif;
25+
}
26+
27+
.prose {
28+
font-family: 'Neue Haas Grotesk', sans-serif;
29+
}
30+
31+
.clash {
32+
font-family: 'Clash Display', sans-serif;
33+
}
234

335
/* Variables */
436
:root {
@@ -34,7 +66,7 @@
3466

3567
--link-color: light-dark(var(--secondary-color), var(--primary-color));
3668

37-
--font-family-main: 'Space Grotesk', monospace;
69+
--font-family-main: 'Neue Haas Grotesk', monospace;
3870

3971
/* Add modern CSS variables */
4072
--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
@@ -89,7 +121,7 @@ html {
89121
}
90122

91123
body {
92-
font-family: 'Space Grotesk', sans-serif;
124+
font-family: 'Neue Haas Grotesk', sans-serif;
93125
margin: 0;
94126
overflow-x: hidden;
95127
padding: 0;

css/uno.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ const config = {
2727
white: '#f6f6f6',
2828
neon: '#dcff71',
2929
blue: '#004fff',
30+
iris: '#004fff',
3031
orange: '#dd6e42',
3132
magenta: '#bf1363',
3233
transparent: 'transparent',

hyperdrive/Cargo.toml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "hyperdrive"
33
authors = ["Sybil Technologies AG"]
4-
version = "1.3.0"
4+
version = "1.4.0"
55
edition = "2021"
66
description = "A general-purpose sovereign cloud computing platform"
77
homepage = "https://hyperware.ai"
@@ -42,7 +42,6 @@ alloy-sol-macro = "0.8.15"
4242
alloy-sol-types = "0.8.15"
4343
anyhow = "1.0.71"
4444
argon2 = "0.5.3"
45-
async-trait = "0.1.71"
4645
base64 = "0.22.0"
4746
bincode = "1.3.3"
4847
chrono = "0.4.31"
@@ -84,6 +83,6 @@ unicode-segmentation = "1.11"
8483
unicode-width = "0.1.13"
8584
url = "2.4.1"
8685
warp = "0.3.5"
87-
wasmtime = "27.0.0"
88-
wasmtime-wasi = "27.0.0"
86+
wasmtime = "33.0.0"
87+
wasmtime-wasi = "33.0.0"
8988
zip = "1.1.1"

hyperdrive/packages/app-store/Cargo.lock

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

hyperdrive/packages/app-store/app-store/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ alloy-primitives = "0.8.15"
1111
alloy-sol-types = "0.8.15"
1212
anyhow = "1.0"
1313
bincode = "1.3.3"
14-
hyperware_process_lib = "1.2.0"
14+
hyperware_process_lib = "2.0.0"
1515
process_macros = "0.1"
1616
rand = "0.8"
1717
serde = { version = "1.0", features = ["derive"] }
@@ -20,7 +20,7 @@ sha2 = "0.10.8"
2020
sha3 = "0.10.8"
2121
url = "2.4.1"
2222
urlencoding = "2.1.0"
23-
wit-bindgen = "0.36.0"
23+
wit-bindgen = "0.42.1"
2424
zip = { version = "1.1.1", default-features = false }
2525

2626
[lib]

hyperdrive/packages/app-store/app-store/src/http_api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ fn make_widget() -> String {
8484
box-sizing: border-box;
8585
margin: 0;
8686
padding: 0;
87-
font-family: 'Space Grotesk', monospace;
87+
font-family: 'Neue Haas Grotesk', monospace;
8888
}
8989
9090
body {

hyperdrive/packages/app-store/chain/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ alloy-primitives = "0.8.15"
1111
alloy-sol-types = "0.8.15"
1212
anyhow = "1.0"
1313
bincode = "1.3.3"
14-
hyperware_process_lib = "1.2.0"
14+
hyperware_process_lib = "2.0.0"
1515
process_macros = "0.1"
1616
rand = "0.8"
1717
serde = { version = "1.0", features = ["derive"] }
@@ -20,7 +20,7 @@ sha2 = "0.10.8"
2020
sha3 = "0.10.8"
2121
url = "2.4.1"
2222
urlencoding = "2.1.0"
23-
wit-bindgen = "0.36.0"
23+
wit-bindgen = "0.42.1"
2424
zip = { version = "1.1.1", default-features = false }
2525

2626
[lib]

hyperdrive/packages/app-store/download/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ simulation-mode = []
88

99
[dependencies]
1010
anyhow = "1.0"
11-
hyperware_process_lib = "1.2.0"
11+
hyperware_process_lib = "2.0.0"
1212
process_macros = "0.1"
1313
serde = { version = "1.0", features = ["derive"] }
1414
serde_json = "1.0"
15-
wit-bindgen = "0.36.0"
15+
wit-bindgen = "0.42.1"
1616

1717
[lib]
1818
crate-type = ["cdylib"]

0 commit comments

Comments
 (0)