-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from p2panda/workspace
Restructure project into workspace for better codebase separation
- Loading branch information
Showing
32 changed files
with
100 additions
and
89 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,3 @@ | ||
[package] | ||
name = "aardvark" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
anyhow = "1.0.94" | ||
async-trait = "0.1.83" | ||
automerge = "0.5.12" | ||
ciborium = "0.2.2" | ||
gettext-rs = { version = "0.7", features = ["gettext-system"] } | ||
gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] } | ||
p2panda-core = "0.1.0" | ||
p2panda-discovery = { version = "0.1.0", features = ["mdns"] } | ||
p2panda-net = "0.1.0" | ||
p2panda-store = "0.1.0" | ||
p2panda-stream = "0.1.0" | ||
p2panda-sync = { version = "0.1.0", features = ["log-sync"] } | ||
serde = { version = "1.0.215", features = ["derive"] } | ||
serde_json = "1.0.128" | ||
tokio = { version = "1.42.0", features = ["full"] } | ||
tokio-stream = "0.1.17" | ||
|
||
[dependencies.adw] | ||
package = "libadwaita" | ||
version = "0.7" | ||
features = ["v1_6"] | ||
[workspace] | ||
resolver = "2" | ||
members = ["aardvark-app", "aardvark-node"] |
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 |
---|---|---|
@@ -0,0 +1,19 @@ | ||
[package] | ||
name = "aardvark" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
aardvark-node = { path = "../aardvark-node" } | ||
anyhow = "1.0.94" | ||
automerge = "0.5.12" | ||
gettext-rs = { version = "0.7", features = ["gettext-system"] } | ||
gtk = { version = "0.9", package = "gtk4", features = ["gnome_47"] } | ||
serde = { version = "1.0.215", features = ["derive"] } | ||
serde_json = "1.0.128" | ||
tokio = { version = "1.42.0", features = ["full"] } | ||
|
||
[dependencies.adw] | ||
package = "libadwaita" | ||
version = "0.7" | ||
features = ["v1_6"] |
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
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,3 +1,4 @@ | ||
pub static VERSION: &str = "0.1.0"; | ||
pub static GETTEXT_PACKAGE: &str = "aardvark"; | ||
pub static LOCALEDIR: &str = "/app/share/locale"; | ||
pub static PKGDATADIR: &str = "/app/share/aardvark"; |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,8 +21,6 @@ | |
mod application; | ||
mod config; | ||
mod document; | ||
mod network; | ||
mod operation; | ||
mod textbuffer; | ||
mod window; | ||
|
||
|
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.
File renamed without changes.
Oops, something went wrong.