M Cargo.lock => Cargo.lock +5 -0
@@ 421,6 421,7 @@ dependencies = [
"diesel_migrations",
"log",
"pretty_env_logger",
+ "shared",
]
[[package]]
@@ 1620,6 1621,7 @@ dependencies = [
"serde",
"serde_json",
"serde_repr",
+ "shared",
"toml 0.7.1",
]
@@ 4484,6 4486,9 @@ dependencies = [
[[package]]
name = "server"
version = "0.1.0"
+dependencies = [
+ "shared",
+]
[[package]]
name = "sha1"
M api/Cargo.toml => api/Cargo.toml +2 -0
@@ 10,6 10,8 @@ license = "GPL-3.0-only"
publish = false
[dependencies]
+laurelin_shared = { package = "shared", path = "../shared" }
+
log = "0.4.17"
pretty_env_logger = "0.4.0"
M client/Cargo.toml => client/Cargo.toml +2 -0
@@ 12,6 12,8 @@ publish = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
+laurelin_shared = { package = "shared", path = "../shared" }
+
# one dep needs ^0.5.9, and another one needs ^0.5.10
# and for some reason cargo can't figure this out, so we're forcing it for now.
toml = "0.7.1"
M server/Cargo.toml => server/Cargo.toml +1 -0
@@ 10,3 10,4 @@ license = "GPL-3.0-only"
publish = false
[dependencies]
+laurelin_shared = { package = "shared", path = "../shared" }