Skip to content

Commit e830fc7

Browse files
committed
make into proper workspace
1 parent bc42593 commit e830fc7

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
[workspace]
2+
members = [
3+
"approx",
4+
"approx-derive",
5+
]

approx-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ quote = "1.0.37"
1616
syn = { version = "2.0.76", features = ["default", "full"] }
1717

1818
[dev-dependencies]
19-
approx = { git = "https://github.com/brendanzab/approx", branch = "approxim-merge", default_features = false, features = ["tuple_impl", "array_impl"] }
19+
approx = { path = "../approx/", features = ["tuple_impl", "array_impl"] }
2020
approxim = { version = "0.6", features = ["tuple_impl"], default-features=false }
2121

2222
[features]

approx/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ derive = []
3838
num-traits = { version = "0.2.19", default-features = false }
3939
num-complex = { version = "0.4.6", optional = true }
4040
ordered-float = { version = "5.0", optional = true }
41-
approx-derive = { version = "0.2.8", features = ["infer_name"] }
41+
approx-derive = { path = "../approx-derive/" }
4242
paste = { version = "1.0.15", optional = true }
4343
indexmap = { version = "2.12.1", optional = true, default-features = false }

0 commit comments

Comments
 (0)