Skip to content

Commit d5e1326

Browse files
committed
[DISCO-3199] - Merino: Initial start to Component
1 parent a07f1ee commit d5e1326

File tree

4 files changed

+860
-0
lines changed

4 files changed

+860
-0
lines changed

Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ members = [
88
"components/crashtest",
99
"components/fxa-client",
1010
"components/logins",
11+
"components/merino",
1112
"components/nimbus",
1213
"components/places",
1314
"components/push",

components/merino/Cargo.toml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[package]
2+
name = "merino"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
uniffi = { version = "0.28.2" }
8+
serde = { version = "1", features=["derive"] }
9+
serde_json = "1"
10+
uuid = {version = "1.12.1", features=["serde"]}
11+
url = {version = "2.5.4", features=["serde"]}
12+
13+
[build-dependencies]
14+
uniffi = { version = "0.28.2", features = ["build"] }

components/merino/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
pub mod merino;

0 commit comments

Comments
 (0)