apub/Cargo.toml

46 lines
1.5 KiB
TOML
Raw Normal View History

2021-11-18 04:17:36 +00:00
[package]
name = "apub"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2021-11-22 20:00:31 +00:00
[features]
default = ["utils"]
actix-web = ["apub-actix-web"]
awc = ["apub-awc"]
background-jobs = ["apub-background-jobs"]
openssl = ["apub-openssl"]
reqwest = ["apub-reqwest"]
rustcrypto = ["apub-rustcrypto"]
utils = ["apub-breaker-session", "apub-deref-client"]
2021-11-18 04:17:36 +00:00
[dependencies]
2021-11-22 20:00:31 +00:00
apub-actix-web = { version = "0.1.0", path = "./apub-actix-web/", optional = true }
apub-awc = { version = "0.1.0", path = "./apub-awc/", optional = true }
apub-background-jobs = { version = "0.1.0", path = "./apub-background-jobs/", optional = true }
apub-breaker-session = { version = "0.1.0", path = "./apub-breaker-session/", optional = true }
apub-core = { version = "0.1.0", path = "./apub-core/" }
apub-deref-client = { version = "0.1.0", path = "./apub-deref-client/", optional = true }
apub-openssl = { version = "0.1.0", path = "./apub-openssl/", optional = true }
apub-reqwest = { version = "0.1.0", path = "./apub-reqwest/", optional = true }
apub-rustcrypto = { version = "0.1.0", path = "./apub-rustcrypto/", optional = true }
2021-11-18 04:17:36 +00:00
[workspace]
members = [
2021-11-19 20:52:31 +00:00
"apub-actix-web",
2021-11-18 04:17:36 +00:00
"apub-awc",
2021-11-18 22:10:12 +00:00
"apub-background-jobs",
2021-11-18 04:17:36 +00:00
"apub-breaker-session",
"apub-core",
2021-11-18 04:17:36 +00:00
"apub-deref-client",
"apub-openssl",
"apub-reqwest",
"apub-rustcrypto",
2021-11-19 20:52:31 +00:00
"examples/actix-web-example",
2021-11-18 04:17:36 +00:00
"examples/awc-example",
2021-11-18 22:10:12 +00:00
"examples/background-jobs-example",
2021-11-18 04:17:36 +00:00
"examples/example-types",
"examples/reqwest-example"
]