2021-03-20 02:31:41 +00:00
|
|
|
[package]
|
|
|
|
name = "nomilo"
|
|
|
|
version = "0.1.0-dev"
|
|
|
|
authors = ["Gaël Berthaud-Müller <blacksponge@tuta.io>"]
|
2022-04-22 17:16:57 +00:00
|
|
|
edition = "2021"
|
2021-03-20 02:31:41 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2022-04-27 17:42:25 +00:00
|
|
|
trust-dns-client = { version = "0.21", features = ["dnssec-openssl"] }
|
2022-04-24 13:40:00 +00:00
|
|
|
trust-dns-proto = "0.21"
|
2021-03-20 02:31:41 +00:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-04-22 17:16:57 +00:00
|
|
|
rocket = { git = "https://github.com/SergioBenitez/Rocket", rev = "6bdd2f8", version = "0.5.0-rc.1", features = ["json"] }
|
|
|
|
rocket_sync_db_pools = { git = "https://github.com/SergioBenitez/Rocket", rev = "6bdd2f8", default-features = false, features = ["diesel_sqlite_pool"], version = "0.1.0-rc.1"}
|
2021-03-20 06:08:55 +00:00
|
|
|
base64 = "0.13.0"
|
2021-03-26 22:30:38 +00:00
|
|
|
uuid = { version = "0.8.2", features = ["v4", "serde"] }
|
2022-04-24 10:42:53 +00:00
|
|
|
diesel = { version = "1.4", features = ["sqlite", "chrono"] }
|
2022-04-23 10:14:19 +00:00
|
|
|
diesel_migrations = "1.4"
|
2021-03-26 22:30:38 +00:00
|
|
|
diesel-derive-enum = { version = "1", features = ["sqlite"] }
|
2021-03-27 05:45:59 +00:00
|
|
|
chrono = { version = "0.4", features = ["serde"] }
|
2021-03-27 17:23:19 +00:00
|
|
|
humantime = "2.1.0"
|
2021-04-03 06:16:54 +00:00
|
|
|
tokio = "1"
|
2022-04-22 22:57:32 +00:00
|
|
|
figment = { version = "0.10.6", features = ["toml", "env"] }
|
2022-04-22 23:34:04 +00:00
|
|
|
clap = {version = "3", features = ["derive", "cargo"]}
|
2022-04-24 10:42:53 +00:00
|
|
|
argon2 = {version = "0.4", default-features = false, features = ["alloc", "password-hash"] }
|
|
|
|
rand = "0.8"
|
2022-04-24 13:40:00 +00:00
|
|
|
# From trust-dns-client
|
|
|
|
futures-util = { version = "0.3.5", default-features = false, features = ["std"] }
|