Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,14 @@
[package]
name = "block_copy_command"
version = "0.0.0"
version = "0.1.0"
edition = "2021"
description = "PostgreSQL extension that blocks COPY commands via a configurable ProcessUtility hook"
authors = ["RustWizard"]
repository = "https://github.com/rustwizard/block_copy_command"
homepage = "https://github.com/rustwizard/block_copy_command"
license = "BSD-3-Clause"
keywords = ["postgresql", "pgrx", "security", "copy", "hook"]
categories = ["database"]

[lib]
crate-type = ["cdylib", "lib"]
Expand Down
2 changes: 1 addition & 1 deletion block_copy_command.control
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
comment = 'block_copy_command: Created by pgrx'
comment = 'Block COPY commands via a configurable ProcessUtility hook'
default_version = '@CARGO_VERSION@'
module_pathname = 'block_copy_command'
relocatable = false
Expand Down
Loading