Split repository into 3 crates

This commit is contained in:
Philip (a-0) 2024-01-05 20:59:25 +01:00
parent d8f1733eb3
commit 31dc4fd4a3
35 changed files with 4011 additions and 498 deletions

28
ubisync-lib/Cargo.toml Normal file
View file

@ -0,0 +1,28 @@
[package]
name = "ubisync-lib"
version = "0.1.0"
edition = "2021"
[dependencies]
anyhow = "1.0.71"
async-trait = "0.1.73"
axum = { version = "0.7.2", features = [ "macros" ] }
chrono = "0.4.31"
itertools = "0.12.0"
jsonwebtoken = "9.2.0"
serde = { version = "1.0.166", features = [ "derive" ] }
serde_json = "1.0.99"
serde_with = "3.3.0"
serial_test = "2.0.0"
tokio = { version = "1.32.0", features = ["full"] }
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
uuid = "1.4.1"
i2p = { path = "../../i2p-rs" }
cozo = { version = "0.7.5", features = [ "storage-rocksdb", "requests", "graph-algo" ] }
[dev-dependencies]
reqwest = { version = "0.11.20", features = [ "json" ] }