Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ src/*.html
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
.specstory
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Added basic unit tests
- Added publisher config
- Add AI assist rules. Based on https://github.com/hashintel/hash
- Added ability to construct GAM requests from static permutive segments with test pages

### Changed
- Upgrade to rust 1.87.0
Expand Down
76 changes: 75 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ publish = false
license = "Apache-2.0"

[dependencies]
brotli = "3.3"
chrono = "0.4"
config = "0.15.11"
cookie = "0.18.1"
Expand All @@ -27,6 +28,8 @@ serde_json = "1.0.91"
sha2 = "0.10.9"
tokio = { version = "1.46", features = ["sync", "macros", "io-util", "rt", "time"] }
url = "2.4.1"
uuid = { version = "1.0", features = ["v4"] }
urlencoding = "2.1"

[build-dependencies]
serde = { version = "1.0", features = ["derive"] }
Expand Down
Loading