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
37 changes: 36 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,39 @@ jobs:
run: cargo doc --no-deps --all-features

- name: Build
run: cargo build --verbose
run: cargo build --verbose

- name: Check (no-default-features)
run: cargo check --no-default-features

- name: Test (no-default-features)
run: cargo test --no-default-features

- name: Check (default features)
run: cargo check

- name: Test (default features)
run: cargo test

msrv:
name: MSRV (Rust 1.88)
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust 1.88
uses: dtolnay/rust-toolchain@1.88

- name: Cache dependencies
uses: Swatinem/rust-cache@v2

- name: Remove incompatible lockfile
run: rm -f Cargo.lock

- name: Check
run: cargo check --all-features

- name: Test
run: cargo test --all-features
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "contextvm-sdk"
version = "0.1.1"
edition = "2021"
rust-version = "1.70"
rust-version = "1.88"
description = "Rust SDK for the ContextVM protocol — MCP over Nostr"
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -58,6 +58,10 @@ required-features = ["rmcp"]
name = "native_echo_client"
required-features = ["rmcp"]

[[test]]
name = "e2e_happy_path"
required-features = ["rmcp", "test-utils"]

[[test]]
name = "transport_integration"
required-features = ["test-utils"]
Expand Down
Loading