Skip to content

Commit

Permalink
refactor: move all code to tailcall-jq workspace (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssddOnTop authored Nov 19, 2024
1 parent dd0051d commit 8d34f4e
Show file tree
Hide file tree
Showing 17 changed files with 34 additions and 7 deletions.
11 changes: 9 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 6 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "tailcall-jq"
name = "jq"
version = "0.1.0"
edition = "2021"

[dependencies]
[workspace.dependencies]
serde_json = "1.0.133"
async-graphql = "7.0.11"
async-graphql-value = "7.0.11"
Expand All @@ -15,3 +15,7 @@ anyhow = "1.0.93"
[dev-dependencies]
pretty_assertions = "1.4.1"
gh-workflow = "0.4.1"
tailcall-jq = { path = "tailcall-jq" }

[workspace]
members = ["tailcall-jq"]
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
#![allow(clippy::module_inception)]
pub mod jsonlike;
pub mod mustache;
3 changes: 3 additions & 0 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {

}
13 changes: 13 additions & 0 deletions tailcall-jq/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
[package]
name = "tailcall-jq"
version = "0.1.0"
edition = "2021"

[dependencies]
serde_json = { workspace = true }
async-graphql = { workspace = true }
async-graphql-value = { workspace = true }
indexmap = { workspace = true }
serde_json_borrow = { workspace = true }
nom = { workspace = true }
anyhow = { workspace = true }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions tailcall-jq/src/lib.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#![allow(clippy::module_inception)]
pub mod jsonlike;
pub mod mustache;
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 8d34f4e

Please sign in to comment.