Browse Source

Release 0.7.0

develop
Paul Masurel 5 years ago
parent
commit
36de06e613
2 changed files with 6 additions and 6 deletions
  1. +3
    -3
      Cargo.lock
  2. +3
    -3
      Cargo.toml

+ 3
- 3
Cargo.lock View File

@@ -1116,7 +1116,7 @@ dependencies = [

[[package]]
name = "tantivy"
version = "0.7.0-dev"
version = "0.7.0"
dependencies = [
"atomicwrites 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
"base64 0.9.3 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1159,7 +1159,7 @@ dependencies = [

[[package]]
name = "tantivy-cli"
version = "0.7.0-dev"
version = "0.7.0"
dependencies = [
"ansi_term 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)",
"bincode 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
@@ -1176,7 +1176,7 @@ dependencies = [
"serde_derive 1.0.79 (registry+https://github.com/rust-lang/crates.io-index)",
"serde_json 1.0.27 (registry+https://github.com/rust-lang/crates.io-index)",
"staticfile 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
"tantivy 0.7.0-dev",
"tantivy 0.7.0",
"time 0.1.40 (registry+https://github.com/rust-lang/crates.io-index)",
"urlencoded 0.4.1 (registry+https://github.com/rust-lang/crates.io-index)",
]


+ 3
- 3
Cargo.toml View File

@@ -1,6 +1,6 @@
[package]
name = "tantivy-cli"
version = "0.7.0-dev"
version = "0.7.0"
authors = ["Paul Masurel <paul.masurel@gmail.com>"]

description = """Command line interface for Tantivy, a search engine library."""
@@ -30,7 +30,7 @@ byteorder = "0.5"
log = "0.3"
futures = "0.1"
env_logger = "0.3"
tantivy = {path="../tantivy"}
tantivy = "0.7"

[[bin]]
name = "tantivy"
@@ -39,6 +39,6 @@ path = "src/main.rs"

[profile.release]
opt-level = 3
debug = false
debug = true
debug-assertions = false
lto = true

Loading…
Cancel
Save