Change jayson and milli dependencies to the public git repos

This commit is contained in:
Loïc Lecrenier 2022-06-22 17:54:58 +02:00
parent b014bab716
commit c0a608fd15
5 changed files with 13 additions and 7 deletions

6
Cargo.lock generated
View File

@ -1130,6 +1130,7 @@ dependencies = [
[[package]] [[package]]
name = "filter-parser" name = "filter-parser"
version = "0.29.3" version = "0.29.3"
source = "git+https://github.com/meilisearch/milli?branch=jayson-integration#6c8d2a5c2f368c67bacf849f6e47134d9347508a"
dependencies = [ dependencies = [
"nom", "nom",
"nom_locate", "nom_locate",
@ -1154,6 +1155,7 @@ dependencies = [
[[package]] [[package]]
name = "flatten-serde-json" name = "flatten-serde-json"
version = "0.29.3" version = "0.29.3"
source = "git+https://github.com/meilisearch/milli?branch=jayson-integration#6c8d2a5c2f368c67bacf849f6e47134d9347508a"
dependencies = [ dependencies = [
"serde_json", "serde_json",
] ]
@ -1639,6 +1641,7 @@ checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
[[package]] [[package]]
name = "jayson" name = "jayson"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/meilisearch/jayson?branch=main#5088e9744eae5125a0da870a34f4fb6365963c07"
dependencies = [ dependencies = [
"jayson-internal", "jayson-internal",
"serde_json", "serde_json",
@ -1647,6 +1650,7 @@ dependencies = [
[[package]] [[package]]
name = "jayson-internal" name = "jayson-internal"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/meilisearch/jayson?branch=main#5088e9744eae5125a0da870a34f4fb6365963c07"
dependencies = [ dependencies = [
"convert_case 0.5.0", "convert_case 0.5.0",
"proc-macro2 1.0.40", "proc-macro2 1.0.40",
@ -1690,6 +1694,7 @@ dependencies = [
[[package]] [[package]]
name = "json-depth-checker" name = "json-depth-checker"
version = "0.29.3" version = "0.29.3"
source = "git+https://github.com/meilisearch/milli?branch=jayson-integration#6c8d2a5c2f368c67bacf849f6e47134d9347508a"
dependencies = [ dependencies = [
"serde_json", "serde_json",
] ]
@ -2222,6 +2227,7 @@ dependencies = [
[[package]] [[package]]
name = "milli" name = "milli"
version = "0.29.3" version = "0.29.3"
source = "git+https://github.com/meilisearch/milli?branch=jayson-integration#6c8d2a5c2f368c67bacf849f6e47134d9347508a"
dependencies = [ dependencies = [
"bimap", "bimap",
"bincode", "bincode",

View File

@ -8,7 +8,7 @@ base64 = "0.13.0"
enum-iterator = "0.7.0" enum-iterator = "0.7.0"
hmac = "0.12.1" hmac = "0.12.1"
meilisearch-types = { path = "../meilisearch-types" } meilisearch-types = { path = "../meilisearch-types" }
milli = { path = "../../milli/milli" } milli = { git = "https://github.com/meilisearch/milli", branch = "jayson-integration" }
rand = "0.8.4" rand = "0.8.4"
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_json = { version = "1.0.79", features = ["preserve_order"] } serde_json = { version = "1.0.79", features = ["preserve_order"] }

View File

@ -42,13 +42,13 @@ futures-util = "0.3.21"
http = "0.2.6" http = "0.2.6"
indexmap = { version = "1.8.0", features = ["serde-1"] } indexmap = { version = "1.8.0", features = ["serde-1"] }
itertools = "0.10.3" itertools = "0.10.3"
jayson = { path = "../../jayson", features = ["serde-json"] } jayson = { git = "https://github.com/meilisearch/jayson", branch = "main" }
jsonwebtoken = "8.0.1" jsonwebtoken = "8.0.1"
log = "0.4.14" log = "0.4.14"
meilisearch-auth = { path = "../meilisearch-auth" } meilisearch-auth = { path = "../meilisearch-auth" }
meilisearch-types = { path = "../meilisearch-types" } meilisearch-types = { path = "../meilisearch-types" }
meilisearch-lib = { path = "../meilisearch-lib" } meilisearch-lib = { path = "../meilisearch-lib" }
milli = { path = "../../milli/milli" } milli = { git = "https://github.com/meilisearch/milli", branch = "jayson-integration" }
mime = "0.3.16" mime = "0.3.16"
num_cpus = "1.13.1" num_cpus = "1.13.1"
obkv = "0.2.0" obkv = "0.2.0"

View File

@ -30,8 +30,8 @@ lazy_static = "1.4.0"
log = "0.4.14" log = "0.4.14"
meilisearch-auth = { path = "../meilisearch-auth" } meilisearch-auth = { path = "../meilisearch-auth" }
meilisearch-types = { path = "../meilisearch-types" } meilisearch-types = { path = "../meilisearch-types" }
milli = { path = "../../milli/milli" } milli = { git = "https://github.com/meilisearch/milli", branch = "jayson-integration" }
jayson = { path = "../../jayson" } jayson = { git = "https://github.com/meilisearch/jayson", branch = "main" }
mime = "0.3.16" mime = "0.3.16"
num_cpus = "1.13.1" num_cpus = "1.13.1"
obkv = "0.2.0" obkv = "0.2.0"

View File

@ -10,8 +10,8 @@ proptest = { version = "1.0.0", optional = true }
proptest-derive = { version = "0.3.0", optional = true } proptest-derive = { version = "0.3.0", optional = true }
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.79" serde_json = "1.0.79"
jayson = { path = "../../jayson" } jayson = { git = "https://github.com/meilisearch/jayson", branch = "main" }
milli = { path = "../../milli/milli" } milli = { git = "https://github.com/meilisearch/milli", branch = "jayson-integration" }
[features] [features]
test-traits = ["proptest", "proptest-derive"] test-traits = ["proptest", "proptest-derive"]