Skip to content

Commit

Permalink
solve dep
Browse files Browse the repository at this point in the history
  • Loading branch information
kingwingfly committed Jun 4, 2024
1 parent 2102cbe commit ef29cf6
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 13 deletions.
6 changes: 0 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,6 @@ edition = "2021"
repository = "https://github.com/kingwingfly/fav"
documentation = ""

[workspace.dependencies]
fav_core = { path = "fav_core" }
fav_derive = { path = "fav_derive" }
fav_utils = { path = "fav_utils" }
fav_cli = { path = "fav_cli" }

[profile.release]
lto = "fat"
opt-level = 3
Expand Down
2 changes: 1 addition & 1 deletion fav/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ documentation.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fav_cli.workspace = true
fav_cli = { path = "../fav_cli", version = "0.2.19" }
# runtime
tokio = { version = "1", features = ["macros", "rt-multi-thread"] }
# tracing
Expand Down
4 changes: 2 additions & 2 deletions fav_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ rustdoc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
fav_utils = { workspace = true, version = "0.0.6" }
fav_core = { workspace = true, version = "0.0.11" }
fav_core = { path = "../fav_core", version = "0.0.11" }
fav_utils = { path = "../fav_utils", version = "0.0.6" }
# CLI
clap = { version = "4.5", features = ["derive"] }
clap_complete = { version = "4" }
Expand Down
4 changes: 2 additions & 2 deletions fav_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ rustdoc-args = ["--cfg", "docsrs"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# derive
fav_derive = { path = "../fav_derive", optional = true, version = "0.0.1" }
# cli
tabled = { version = "0.15.0", optional = true }
# net
Expand All @@ -35,8 +37,6 @@ tokio-stream = { version = "0.1" }
futures = "0.3"
# utils
bitflags = "2.5"
# derive
fav_derive = { workspace = true, optional = true, version = "0.0.1" }
# tracing
tracing = { version = "0.1" }

Expand Down
2 changes: 1 addition & 1 deletion fav_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@ syn = { version = "2.0", features = ["full"] }
quote = "1.0"

[dev-dependencies]
fav_core.workspace = true
fav_core = { path = "../fav_core", version = "0.0.11" }
reqwest = { version = "0.12" }
2 changes: 1 addition & 1 deletion fav_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
# core
fav_core = { workspace = true, version = "0.0.11" }
fav_core = { path = "../fav_core", version = "0.0.11" }
# CLI
indicatif = { version = "0.17", features = ["tokio"] }
# serde
Expand Down

0 comments on commit ef29cf6

Please sign in to comment.