Initial commit
This commit is contained in:
commit
64fa7edc8e
10 changed files with 1870 additions and 0 deletions
22
ingest/Cargo.toml
Normal file
22
ingest/Cargo.toml
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
[package]
|
||||
name = "ingest"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
tempfile = "3"
|
||||
serde = { version = "1.0", features = [ "derive" ] }
|
||||
serde_json = "1.0"
|
||||
ipnetwork = "0.18"
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1"
|
||||
features = [ "full" ]
|
||||
|
||||
[dependencies.sqlx]
|
||||
version = "0.5"
|
||||
features = [ "runtime-tokio-rustls", "postgres", "ipnetwork", "migrate", "macros", "time" ]
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue