diff options
author | rtkay123 <dev@kanjala.com> | 2025-07-25 18:37:28 +0200 |
---|---|---|
committer | rtkay123 <dev@kanjala.com> | 2025-07-25 18:37:28 +0200 |
commit | 3831e5a42ab4e21f116537c5251582245de37f0b (patch) | |
tree | de6b5e41b6bbac7c48f617a293a670cdbd43c77a /lib/sellershut-core/Cargo.toml | |
parent | cd528dbb7fb5d596b47178110a3dcef9af573c8d (diff) | |
download | sellershut-3831e5a42ab4e21f116537c5251582245de37f0b.tar.bz2 sellershut-3831e5a42ab4e21f116537c5251582245de37f0b.zip |
feat(lib): auth rpc
Diffstat (limited to 'lib/sellershut-core/Cargo.toml')
-rw-r--r-- | lib/sellershut-core/Cargo.toml | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/lib/sellershut-core/Cargo.toml b/lib/sellershut-core/Cargo.toml new file mode 100644 index 0000000..b5e1bb9 --- /dev/null +++ b/lib/sellershut-core/Cargo.toml @@ -0,0 +1,36 @@ +[package] +name = "sellershut-core" +version = "0.1.0" +edition = "2024" +license.workspace = true +homepage.workspace = true +documentation.workspace = true +description.workspace = true + +[dependencies] +prost = "0.13.5" +serde = { workspace = true, optional = true } +serde_json = { workspace = true, optional = true } +time = { workspace = true, optional = true } +tonic.workspace = true +tonic-types = "0.13.0" + +[features] +default = [] +auth = [] +serde = ["dep:serde", "serde/derive", "serde_json"] +time = [ + "dep:time", + "serde", + "time/serde", + "time/parsing", + "time/formatting", + "time/macros", +] + +[package.metadata.docs.rs] +all-features = true +rustdoc-args = ["--cfg", "docsrs"] + +[build-dependencies] +tonic-build = { version = "0.13.0", features = ["cleanup-markdown"] } |