chore: scaffold v2 workspace
This commit is contained in:
4
crates/adapters/activitypub-base/Cargo.toml
Normal file
4
crates/adapters/activitypub-base/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "activitypub-base"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/activitypub-base/src/lib.rs
Normal file
0
crates/adapters/activitypub-base/src/lib.rs
Normal file
4
crates/adapters/activitypub/Cargo.toml
Normal file
4
crates/adapters/activitypub/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "activitypub"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/activitypub/src/lib.rs
Normal file
0
crates/adapters/activitypub/src/lib.rs
Normal file
14
crates/adapters/auth/Cargo.toml
Normal file
14
crates/adapters/auth/Cargo.toml
Normal file
@@ -0,0 +1,14 @@
|
||||
[package]
|
||||
name = "auth"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
domain = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
chrono = { workspace = true }
|
||||
tokio = { workspace = true }
|
||||
jsonwebtoken = "9"
|
||||
argon2 = "0.5"
|
||||
0
crates/adapters/auth/src/lib.rs
Normal file
0
crates/adapters/auth/src/lib.rs
Normal file
4
crates/adapters/event-payload/Cargo.toml
Normal file
4
crates/adapters/event-payload/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "event-payload"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/event-payload/src/lib.rs
Normal file
0
crates/adapters/event-payload/src/lib.rs
Normal file
4
crates/adapters/event-publisher/Cargo.toml
Normal file
4
crates/adapters/event-publisher/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "event-publisher"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/event-publisher/src/lib.rs
Normal file
0
crates/adapters/event-publisher/src/lib.rs
Normal file
4
crates/adapters/nats/Cargo.toml
Normal file
4
crates/adapters/nats/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "nats"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/nats/src/lib.rs
Normal file
0
crates/adapters/nats/src/lib.rs
Normal file
4
crates/adapters/postgres-federation/Cargo.toml
Normal file
4
crates/adapters/postgres-federation/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "postgres-federation"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/postgres-federation/src/lib.rs
Normal file
0
crates/adapters/postgres-federation/src/lib.rs
Normal file
4
crates/adapters/postgres-search/Cargo.toml
Normal file
4
crates/adapters/postgres-search/Cargo.toml
Normal file
@@ -0,0 +1,4 @@
|
||||
[package]
|
||||
name = "postgres-search"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
0
crates/adapters/postgres-search/src/lib.rs
Normal file
0
crates/adapters/postgres-search/src/lib.rs
Normal file
17
crates/adapters/postgres/Cargo.toml
Normal file
17
crates/adapters/postgres/Cargo.toml
Normal file
@@ -0,0 +1,17 @@
|
||||
[package]
|
||||
name = "postgres"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
domain = { workspace = true }
|
||||
sqlx = { workspace = true }
|
||||
uuid = { workspace = true }
|
||||
chrono = { workspace = true }
|
||||
async-trait = { workspace = true }
|
||||
thiserror = { workspace = true }
|
||||
tracing = { workspace = true }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
sqlx = { workspace = true, features = ["migrate"] }
|
||||
0
crates/adapters/postgres/src/lib.rs
Normal file
0
crates/adapters/postgres/src/lib.rs
Normal file
Reference in New Issue
Block a user