caio.co/de/cantine

Move `tique_derive` into the `tique` module

Id
813bccbe0c5974337dceff3e348c76ecf23138d7
Author
Caio
Commit time
2020-01-27T11:07:33+01:00

Modified Cargo.toml

@@ -1,7 +1,6
[workspace]

members = [
"cantine",
"tique",
- "tique_derive",
]

Modified tique/Cargo.toml

@@ -11,7 +11,7
[dependencies]
tantivy = "0.11"

-tique_derive = { path = "../tique_derive", optional = true }
+tique_derive = { path = "./tique_derive", optional = true }
serde = { version = "1", features = ["derive"], optional = true }
byteorder = { version = "1.3", optional = true }
nom = { version = "5", optional = true }

Renamed tique_derive/tests/basic.rs to tique/tique_derive/tests/basic.rs

No visible change

Renamed tique_derive/src/lib.rs to tique/tique_derive/src/lib.rs

No visible change

Renamed tique_derive/Cargo.toml to tique/tique_derive/Cargo.toml

@@ -13,6 +13,6
quote = "1.0"

[dev-dependencies]
-tique = { path = "../tique" }
+tique = { path = ".." }
serde = { version = "1.0", features = ["derive"] }
tantivy = "0.11"