Skip to content

Commit

Permalink
Merge pull request #685 from kamirr/fix_fj_serialization2
Browse files Browse the repository at this point in the history
Followup on PR #682 (fj serialization)
  • Loading branch information
hannobraun authored Jun 13, 2022
2 parents 07405b6 + aa6f13e commit cd120d2
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,9 @@ jobs:
uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b
with:
command: build
args: --all-features
- name: Run `cargo test`
uses: actions-rs/cargo@4ff6ec2846f6e7217c1a9b0b503506665f134c4b
with:
command: test
args: --all-features
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,15 @@ members = [
"tools/release-operator",
]
default-members = [
"crates/fj",
"crates/fj-app",
"crates/fj-export",
"crates/fj-host",
"crates/fj-interop",
"crates/fj-kernel",
"crates/fj-math",
"crates/fj-operations",
"crates/fj-proc",
"crates/fj-viewer",
"crates/fj-window",
]
8 changes: 4 additions & 4 deletions crates/fj/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ serialization = ["serde"]
[dependencies]
serde = { version = "1.0.7", features = ["derive"], optional = true }

[dev-dependencies]
serde_json = "1.0.81"

[dependencies.fj-proc]
path = "../../crates/fj-proc"
path = "../../crates/fj-proc"

[dev-dependencies]
serde_json = "1.0.81"
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
build:
cargo clippy
cargo test
cargo clippy --all-features
cargo test --all-features
cargo fmt --check

0 comments on commit cd120d2

Please sign in to comment.