Skip to content

Commit

Permalink
chore: fix dev script
Browse files Browse the repository at this point in the history
  • Loading branch information
ZibanPirate committed Nov 17, 2024
1 parent 88b3e0f commit d49bf04
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,13 @@ For more examples, see the [`./tests/cases`](https://github.com/ZibanPirate/nest
- [x] nest `struct` inside another `struct`.
- [x] nest `enum` inside another `enum`.
- [x] nest `enum` inside a `struct` and vice-versa.
- [x] inherit `derive` and other attribute macros from root `struct`.
- [x] auto-generate inner `struct` names.
- [ ] overwrite the auto-generated inner struct name.

Feature parity with native Rust code:

- [x] `impl` block on inner `struct`s.
- [x] inherit `derive` and other attribute macros from root `struct`.
- [ ] define `derive` and other attribute macros individually per inner `struct`.
- [ ] define doc comments individually per inner `struct`.
- [ ] useful complier error messages.
Expand Down
2 changes: 1 addition & 1 deletion bacon.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[jobs.expand]
command = ["cargo", "expand", "--color", "always", "--test", "develop"]
command = ["cargo", "expand", "--color", "always", "--test", "playground"]
watch = ["src"]
need_stdout = true

Expand Down
4 changes: 3 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,13 @@
//! - [x] nest `struct` inside another `struct`.
//! - [x] nest `enum` inside another `enum`.
//! - [x] nest `enum` inside a `struct` and vice-versa.
//! - [x] inherit `derive` and other attribute macros from root `struct`.
//! - [x] auto-generate inner `struct` names.
//! - [ ] overwrite the auto-generated inner struct name.
//!
//! Feature parity with native Rust code:
//!
//! - [x] `impl` block on inner `struct`s.
//! - [x] inherit `derive` and other attribute macros from root `struct`.
//! - [ ] define `derive` and other attribute macros individually per inner `struct`.
//! - [ ] define doc comments individually per inner `struct`.
//! - [ ] useful complier error messages.
Expand Down

0 comments on commit d49bf04

Please sign in to comment.