Get rid of the 'crates/' subdirectory 💬 by Caio 6 years ago (log)
Just a `git mv crates/* .` and minor adjustments `Cargo.toml` and `.gitignore` to point at the new locations
Just a `git mv crates/* .` and minor adjustments `Cargo.toml` and `.gitignore` to point at the new locations
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
[package]
name = "tique_derive"
version = "0.1.0"
authors = ["Caio Romão <contact@caio.co>"]
edition = "2018"
[lib]
proc-macro = true
[dependencies]
proc-macro2 = "1.0"
syn = "1.0"
quote = "1.0"
[dev-dependencies]
tique = { path = "../tique" }
serde = { version = "1.0", features = ["derive"] }
tantivy = "0.11"
|