Skip to content

Commit d58e157

Browse files
authored
GAM module, GAM testing endpoints
1 parent 55dac6b commit d58e157

File tree

12 files changed

+1253
-14
lines changed

12 files changed

+1253
-14
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,4 @@ src/*.html
2020
!.vscode/tasks.json
2121
!.vscode/launch.json
2222
!.vscode/extensions.json
23+
.specstory

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3232
- Added basic unit tests
3333
- Added publisher config
3434
- Add AI assist rules. Based on https://github.com/hashintel/hash
35+
- Added ability to construct GAM requests from static permutive segments with test pages
3536

3637
### Changed
3738
- Upgrade to rust 1.87.0

Cargo.lock

Lines changed: 75 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/common/Cargo.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ publish = false
99
license = "Apache-2.0"
1010

1111
[dependencies]
12+
brotli = "3.3"
1213
chrono = "0.4"
1314
config = "0.15.11"
1415
cookie = "0.18.1"
@@ -27,6 +28,8 @@ serde_json = "1.0.91"
2728
sha2 = "0.10.9"
2829
tokio = { version = "1.46", features = ["sync", "macros", "io-util", "rt", "time"] }
2930
url = "2.4.1"
31+
uuid = { version = "1.0", features = ["v4"] }
32+
urlencoding = "2.1"
3033

3134
[build-dependencies]
3235
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)