diff --git a/Cargo.lock b/Cargo.lock index 7942b88..d65c298 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -300,7 +300,7 @@ version = "0.1.0" dependencies = [ "cynic", "cynic-codegen", - "scheme", + "schema", "surf", ] @@ -1302,7 +1302,7 @@ dependencies = [ ] [[package]] -name = "scheme" +name = "schema" version = "0.1.0" dependencies = [ "cynic", diff --git a/Cargo.toml b/Cargo.toml index babda2c..90641bc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,5 +1,5 @@ [workspace] members = [ - "scheme", + "schema", "cli" ] diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 68ac784..651b208 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" [dependencies] -scheme.path = "../scheme" +schema.path = "../schema" cynic = { version = "3.2", features = ["http-surf"] } surf = "2" diff --git a/scheme/Cargo.toml b/schema/Cargo.toml similarity index 93% rename from scheme/Cargo.toml rename to schema/Cargo.toml index c848303..9687a85 100644 --- a/scheme/Cargo.toml +++ b/schema/Cargo.toml @@ -1,5 +1,5 @@ [package] -name = "scheme" +name = "schema" version = "0.1.0" edition = "2021" diff --git a/scheme/src/lib.rs b/schema/src/lib.rs similarity index 100% rename from scheme/src/lib.rs rename to schema/src/lib.rs