From 29f82f82a70fde3ff3d159266a90504dae3fafae Mon Sep 17 00:00:00 2001 From: heulitig Date: Wed, 13 Dec 2023 13:25:03 +0530 Subject: [PATCH] moved fastn-lang dependencies to top-level Cargo workspace --- Cargo.toml | 5 +++++ fastn-lang/Cargo.toml | 10 +++++----- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 1125ca163c..920fc9ce07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,6 +8,7 @@ members = [ "fastn-issues", "fastn-js", "fastn-grammar", + "fastn-lang", "foo", # "fastn-wasm", # "fastn-runtime", @@ -53,6 +54,8 @@ strip = true # If you are not using the latest version intentionally, please do not list it in this section # and create it's own [dependencies.] section, and document it with why are you not # using the latest dependency, and what is the plan to moving to the latest version. + +accept-language = "2" actix-web = "4" antidote = "1" dirs = "5" @@ -79,6 +82,8 @@ dioxus-native-core-macro = { git = "https://github.com/DioxusLabs/dioxus", rev = dotenvy = "0.15" edit = "0.1" env_logger = "0.10" +enum-iterator = "0.6.0" +enum-iterator-derive = "0.6.0" fastn-cloud = { path = "fastn-cloud" } fastn-core = { path = "fastn-core" } fastn-issues = { path = "fastn-issues" } diff --git a/fastn-lang/Cargo.toml b/fastn-lang/Cargo.toml index 718e7aaf05..ae7ef79046 100644 --- a/fastn-lang/Cargo.toml +++ b/fastn-lang/Cargo.toml @@ -5,8 +5,8 @@ authors = ["Amit Upadhyay "] edition = "2018" [dependencies] -accept-language = "2" -thiserror = "1" -serde = "1" -enum-iterator = "0.6.0" -enum-iterator-derive = "0.6.0" +accept-language.workspace = true +thiserror.workspace = true +serde.workspace = true +enum-iterator.workspace = true +enum-iterator-derive.workspace = true