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
8 changes: 8 additions & 0 deletions Cargo.lock

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

17 changes: 17 additions & 0 deletions app/sms-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,22 @@ tokio.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true

[dev-dependencies]
# #25's acceptance gate spawns the real `sms-gateway` binary as two
# separate OS processes (`CARGO_BIN_EXE_sms-gateway`, only available to an
# integration test inside this same package) and drives them over real
# HTTP — a real `private_key_jwt` client assertion, a real `/token`
# exchange, and one hand-signed test-only token standing in for a
# human-login path that doesn't exist yet (see
# `tests/m1_acceptance_gate_live_postgres.rs`'s own module doc).
base64.workspace = true
chrono.workspace = true
jsonwebtoken.workspace = true
rand.workspace = true
reqwest.workspace = true
rsa.workspace = true
serde.workspace = true
serde_json.workspace = true

[lints]
workspace = true
Loading
Loading