-
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.
create workspaces to manage multiple pkgs
- Loading branch information
Showing
31 changed files
with
6,071 additions
and
296 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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,7 @@ | ||
[package] | ||
name = "filplus-core" | ||
version = "0.1.0" | ||
edition = "2021" | ||
[workspace] | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] | ||
actix-web = "4.3.1" | ||
dotenv = "0.15.0" | ||
http = "0.2.9" | ||
hyper = "0.14.26" | ||
hyper-rustls = "0.24.0" | ||
jsonwebtoken = "8.3.0" | ||
octocrab = "0.25.1" | ||
serde = { version = "1.0.164", features = ["derive", "std", | ||
"serde_derive", "alloc", "rc"] } | ||
tokio = { version = "1.29.1", features = ["full"] } | ||
env_logger = "0.10.0" | ||
markdown = "1.0.0-alpha.9" | ||
serde_json = "1.0.96" | ||
chrono = "0.4.26" | ||
base64 = "0.13" | ||
actix-cors = "0.6.4" | ||
reqwest = { version = "0.11.18", features = ["json"] } | ||
futures = "0.3.28" | ||
mongodb = "2.6.1" | ||
members = [ | ||
"lib", | ||
"http-server", | ||
"cli" | ||
] |
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,8 @@ | ||
[package] | ||
name = "cli" | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[dependencies] |
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,3 @@ | ||
fn main() { | ||
println!("Hello, world!"); | ||
} |
Oops, something went wrong.