Move shared API code to library project
This commit is contained in:
@@ -4,12 +4,13 @@ version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
chrono = "0.4.41"
|
||||
clap = { version = "4.5.46", features = ["derive"] }
|
||||
colog = "1.3.0"
|
||||
log = "0.4.27"
|
||||
rusqlite = { version = "0.37.0", features = ["bundled"] }
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.143"
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
warp = { version = "0.4", features = ["server"] }
|
||||
chrono = { workspace = true }
|
||||
clap = { workspace = true, features = ["derive"] }
|
||||
colog = { workspace = true }
|
||||
log = { workspace = true }
|
||||
rusqlite = { workspace = true, features = ["bundled"] }
|
||||
serde = { workspace = true, features = ["derive"] }
|
||||
serde_json = { workspace = true }
|
||||
shared_api_lib = { path = "../shared_api_lib" }
|
||||
tokio = { workspace = true, features = ["full"] }
|
||||
warp = { workspace = true, features = ["server"] }
|
||||
|
||||
Reference in New Issue
Block a user