-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
00c2454
commit 08f869c
Showing
17 changed files
with
50 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[hooks] | ||
pre-commit = "cargo clippy -- -D warnings" | ||
pre-push = "cargo check & cargo test --all-features" | ||
pre-push = "cargo check & cargo test --all-features --workspace" | ||
|
||
[logging] | ||
verbose = true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,13 +3,22 @@ name = "annotation-rs-codegen" | |
version = "0.1.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "proc-macro lib for annotation-rs" | ||
repository = "https://github.com/dark-flames/annotation-rs" | ||
include = [ | ||
"/src/**", | ||
"/LICENSE-APACHE", | ||
"/LICENSE-MIT", | ||
"/Cargo.toml", | ||
"/README.md", | ||
] | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
helpers = { package = "annotation-rs-helpers", path = "../helpers" } | ||
helpers = { package = "annotation-rs-helpers", path = "../helpers", version = "0.1.0" } | ||
quote = "1.0" | ||
proc-macro2 = "1.0" | ||
heck = "0.3.1" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,8 +3,17 @@ name = "annotation-rs-helpers" | |
version = "0.1.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "internal helper lib for annotation-rs" | ||
repository = "https://github.com/dark-flames/annotation-rs" | ||
include = [ | ||
"/src/**", | ||
"/LICENSE-APACHE", | ||
"/LICENSE-MIT", | ||
"/Cargo.toml", | ||
"/README.md", | ||
] | ||
readme = "README.md" | ||
|
||
[dependencies] | ||
syn = "1.0" | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,28 @@ name = "annotation-rs-test-macros" | |
version = "0.1.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
edition = "2018" | ||
license = "MIT OR Apache-2.0" | ||
description = "test macros for annotation-rs" | ||
repository = "https://github.com/dark-flames/annotation-rs" | ||
include = [ | ||
"/src/**", | ||
"/LICENSE-APACHE", | ||
"/LICENSE-MIT", | ||
"/Cargo.toml", | ||
"/README.md", | ||
] | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
syn = "1.0" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
objects = { package = "annotations-test-objects", path = "../objects" } | ||
derive = { package = "annotation-rs-codegen", path = "../../derive" } | ||
annotation-rs = { path = "../../"} | ||
objects = { package = "annotation-test-objects", path = "../objects", version = "0.1.0" } | ||
derive = { package = "annotation-rs-codegen", path = "../../derive", version = "0.1" } | ||
annotation-rs = { path = "../../", version = "0.1.0", features = ["annotation_reader"]} | ||
float-cmp = "0.8.0" | ||
|
||
[lib] | ||
proc-macro = true |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./LICENSE-APACHE |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./LICENSE-MIT |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,25 @@ | ||
[package] | ||
name = "annotations-test-objects" | ||
name = "annotation-test-objects" | ||
version = "0.1.0" | ||
authors = ["dark-flames <[email protected]>"] | ||
license = "MIT OR Apache-2.0" | ||
edition = "2018" | ||
description = "test objects for annotation-rs" | ||
repository = "https://github.com/dark-flames/annotation-rs" | ||
include = [ | ||
"/src/**", | ||
"/LICENSE-APACHE", | ||
"/LICENSE-MIT", | ||
"/Cargo.toml", | ||
"/README.md", | ||
] | ||
readme = "README.md" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
syn = "1.0" | ||
proc-macro2 = "1.0" | ||
quote = "1.0" | ||
derive = { package = "annotation-rs-codegen", path = "../../derive" } | ||
annotation-rs = { path = "../../"} | ||
derive = { package = "annotation-rs-codegen", path = "../../derive", version = "0.1" } | ||
annotation-rs = { path = "../../", version = "0.1.0" } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./LICENSE-APACHE |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./LICENSE-MIT |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
./README.md |