fedimovies/Cargo.toml

113 lines
3.6 KiB
TOML
Raw Normal View History

2021-04-09 00:22:17 +00:00
[package]
name = "mitra"
2023-01-18 20:20:26 +00:00
version = "1.10.0"
2022-10-05 20:25:34 +00:00
description = "Federated micro-blogging platform and content subscription service"
2021-04-09 00:22:17 +00:00
license = "AGPL-3.0"
2022-12-15 16:58:18 +00:00
edition = "2021"
rust-version = "1.56"
2021-04-09 00:22:17 +00:00
publish = false
default-run = "mitra"
[workspace]
members = [
".",
"mitra-cli",
]
default-members = [
".",
"mitra-cli",
]
2021-04-09 00:22:17 +00:00
[dependencies]
# Used to handle incoming HTTP requests
2022-08-18 18:05:18 +00:00
actix-cors = "0.6.2"
actix-files = "0.6.2"
actix-web = "4.1.0"
actix-web-httpauth = "0.8.0"
2021-04-09 00:22:17 +00:00
# Used for HTML sanitization
2022-04-13 17:45:47 +00:00
ammonia = "3.2.0"
# Used for catching errors
anyhow = "1.0.58"
2021-04-09 00:22:17 +00:00
# Used for working with RSA keys, HTTP signatures and file uploads
base64 = "0.13.0"
# Used to decode base58btc
bs58 = "0.4.0"
2021-04-09 00:22:17 +00:00
# Used for working with dates
chrono = { version = "0.4.23", default-features = false, features = ["std", "serde"] }
# Used for parsing markdown
comrak = { version = "0.15.0", default-features = false }
2022-04-08 18:52:13 +00:00
# Used for pooling database connections
deadpool = "0.9.2"
deadpool-postgres = { version = "0.10.2", default-features = false }
2021-04-09 00:22:17 +00:00
# Used to read .env files
dotenv = "0.15.0"
# Used to work with hexadecimal strings
hex = { version = "0.4.3", features = ["serde"] }
2021-04-09 00:22:17 +00:00
# Used for logging
log = { version = "0.4.14", features = ["serde"] }
env_logger = { version = "0.9.0", default-features = false }
2022-11-10 10:13:03 +00:00
# Used to verify minisign signatures
ed25519-dalek = "1.0.1"
2022-12-15 17:57:18 +00:00
ed25519 = "1.5.2"
2022-12-15 17:50:03 +00:00
blake2 = "0.10.5"
2021-04-09 00:22:17 +00:00
# Used to guess media type of a file
mime_guess = "2.0.3"
mime-sniffer = "0.1.2"
2022-08-15 23:56:06 +00:00
# Used to query Monero node
2022-12-13 13:55:45 +00:00
monero-rpc = "0.3.2"
2021-04-09 00:22:17 +00:00
# Used to determine the number of CPUs on the system
num_cpus = "1.13.0"
# Used for working with regular expressions
2022-08-17 18:37:45 +00:00
regex = "1.6.0"
2021-04-09 00:22:17 +00:00
# Used to generate random numbers
2022-02-09 00:09:08 +00:00
rand = "0.8.4"
2021-04-09 00:22:17 +00:00
# Used for managing database migrations
2022-04-08 18:52:13 +00:00
refinery = { version = "0.8.4", features = ["tokio-postgres"] }
2021-04-09 00:22:17 +00:00
# Used for making async HTTP requests
2022-10-19 18:39:47 +00:00
reqwest = { version = "0.11.10", features = ["json", "multipart", "socks"] }
2021-04-09 00:22:17 +00:00
# Used for working with RSA keys
rsa = "0.5.0"
pem = "1.0.2"
2021-04-09 00:22:17 +00:00
# Used for hashing passwords
2022-12-15 21:20:07 +00:00
rust-argon2 = "1.0.0"
2021-04-09 00:22:17 +00:00
# Used for working with ethereum keys
2022-04-20 17:30:30 +00:00
secp256k1 = { version = "0.21.3", features = ["rand", "rand-std"] }
2021-04-09 00:22:17 +00:00
# Used for serialization/deserialization
2022-04-08 18:52:13 +00:00
serde = { version = "1.0.136", features = ["derive"] }
2022-12-15 21:20:07 +00:00
serde_json = "1.0.89"
2022-10-20 23:18:45 +00:00
# Used to create JCS representations
serde_jcs = "0.1.0"
2021-04-09 00:22:17 +00:00
# Used to parse config file
serde_yaml = "0.8.17"
# Used to calculate SHA2 hashes
sha2 = "0.9.5"
2022-02-09 00:09:08 +00:00
# Used to verify EIP-4361 signatures
2022-12-03 18:52:12 +00:00
siwe = "0.4.0"
2021-04-09 00:22:17 +00:00
# Used for creating error types
thiserror = "1.0.37"
2022-04-08 18:52:13 +00:00
# Async runtime
tokio = { version = "1.17.0", features = ["macros"] }
# Used for working with Postgresql database
2022-08-18 00:41:29 +00:00
tokio-postgres = { version = "0.7.6", features = ["with-chrono-0_4", "with-uuid-1", "with-serde_json-1"] }
postgres-types = { version = "0.2.3", features = ["derive", "with-chrono-0_4", "with-uuid-1", "with-serde_json-1"] }
postgres-protocol = "0.6.4"
2022-01-07 16:33:23 +00:00
# Used to construct PostgreSQL queries
2022-04-08 18:52:13 +00:00
postgres_query = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
postgres_query_macro = { git = "https://github.com/nolanderc/rust-postgres-query", rev = "b4422051c8a31fbba4a35f88004c1cefb1878dd5" }
2021-04-09 00:22:17 +00:00
# Used to work with URLs
url = "2.2.2"
# Used to generate lexicographically sortable IDs
2022-08-18 00:41:29 +00:00
ulid = { version = "1.0.0", features = ["uuid"] }
2021-04-09 00:22:17 +00:00
# Used to work with UUIDs
2022-08-18 00:41:29 +00:00
uuid = { version = "1.1.2", features = ["serde", "v4"] }
2021-04-09 00:22:17 +00:00
# Used to query ethereum node
2022-04-20 17:30:30 +00:00
web3 = { version = "0.18.0", default-features = false, features = ["http", "http-tls", "signing"] }
2022-01-06 11:09:45 +00:00
[dev-dependencies]
2022-12-24 18:53:21 +00:00
rand = { version = "0.8.4", features = ["small_rng"] }
2022-12-15 21:20:07 +00:00
serial_test = "0.7.0"
[features]
production = []