Skip to content

Commit

Permalink
Merge pull request #24 from filecoin-project/workspaces
Browse files Browse the repository at this point in the history
create workspaces to manage multiple pkgs
  • Loading branch information
jbesraa committed Oct 4, 2023
2 parents 1ea4f1a + c0bd00e commit e5579e8
Show file tree
Hide file tree
Showing 31 changed files with 6,071 additions and 296 deletions.
212 changes: 98 additions & 114 deletions Cargo.lock

Large diffs are not rendered by default.

32 changes: 6 additions & 26 deletions Cargo.toml
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"
]
8 changes: 8 additions & 0 deletions cli/Cargo.toml
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]
3 changes: 3 additions & 0 deletions cli/src/main.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}
Loading

0 comments on commit e5579e8

Please sign in to comment.