Skip to content

Commit

Permalink
Merge pull request #20 from us-irs/serde-dependency-fix
Browse files Browse the repository at this point in the history
small fix for new serde dependency
  • Loading branch information
sbarral authored Mar 13, 2024
2 parents f5f0721 + 8e16f8c commit bc78844
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ jobs:

- name: Run cargo check
run: cargo check
args: --all-features

test:
name: Test suite
Expand Down
3 changes: 2 additions & 1 deletion asynchronix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,11 @@ keywords = ["simulation", "discrete-event", "systems", "cyberphysical", "real-ti
autotests = false

[features]
serde = ["dep:serde"]
# API-unstable public exports meant for external test/benchmarking; development only.
dev-hooks = []
# Logging of performance-related statistics; development only.
dev-logs = []
serde = ["dep:serde"]

[dependencies]
async-event = "0.1"
Expand All @@ -43,6 +43,7 @@ st3 = "0.4"
[dependencies.serde]
version = "1"
optional = true
features = ["derive"]

[target.'cfg(asynchronix_loom)'.dependencies]
loom = "0.5"
Expand Down

0 comments on commit bc78844

Please sign in to comment.