Skip to content

Commit

Permalink
moved fastn-lang dependencies to top-level Cargo workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Heulitig committed Dec 13, 2023
1 parent 482d028 commit 29f82f8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ members = [
"fastn-issues",
"fastn-js",
"fastn-grammar",
"fastn-lang",
"foo",
# "fastn-wasm",
# "fastn-runtime",
Expand Down Expand Up @@ -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.<name>] 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"
Expand All @@ -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" }
Expand Down
10 changes: 5 additions & 5 deletions fastn-lang/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ authors = ["Amit Upadhyay <[email protected]>"]
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

0 comments on commit 29f82f8

Please sign in to comment.