-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move
backend-local-server/*
to the root of the project
- Loading branch information
Showing
10 changed files
with
43 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,47 @@ | ||
[workspace] | ||
members = ["backend-tauri"] | ||
default-members = ["."] | ||
resolver = "2" | ||
|
||
[package] | ||
name = "diffedit3" | ||
description = "Edit diffs in a 3-pane view" | ||
license = { workspace = true } | ||
repository = { workspace = true } | ||
readme = { workspace = true } | ||
version = { workspace = true } | ||
edition = { workspace = true } | ||
include = ["/src", "/webapp/dist", "/*.md"] | ||
|
||
[workspace.package] | ||
version = "0.1.0" # Also update package.json and tauri.conf.json | ||
version = "0.1.0" # Also update package.json and tauri.conf.json | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
readme = "README.md" | ||
repository = "https://github.com/ilyagr/diffedit3" | ||
|
||
[workspace] | ||
members = [ "backend-tauri", "backend-local-server"] | ||
default-members = [ | ||
"backend-local-server", | ||
# `cargo build` should ignore the Tauri binary. | ||
# `cargo tauri build` must be used for that. | ||
] | ||
resolver = "2" | ||
[dependencies] | ||
clap = { version = "4.5.0", features = ["derive"] } | ||
indexmap = { version = "2.2.3", features = ["serde"] } | ||
open = "5.0.1" | ||
parking_lot = "0.12.1" | ||
poem = { version = "2.0.0", features = ["embed"] } | ||
rust-embed = { version = "8.2.0" } | ||
serde = { version = "1.0.196", features = ["serde_derive"] } | ||
thiserror = "1.0.57" | ||
tokio = { version = "1.36.0", features = [ | ||
"macros", | ||
"rt-multi-thread", | ||
"signal", | ||
] } | ||
toml = { version = "0.8.10", features = ["indexmap"] } | ||
tracing-subscriber = "0.3.18" | ||
walkdir = "2.4.0" | ||
|
||
[dev-dependencies] | ||
insta = { version = "1.34.0", features = [ | ||
"redactions", | ||
"serde", | ||
"yaml", | ||
"json", | ||
] } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.