1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2018"
rust-version = "1.56.0"
name = "pyo3-log"
version = "0.10.0"
authors = ["Michal 'vorner' Vaner <vorner@vorner.cz>"]
description = "Logging bridge from pyo3 native extension to python"
documentation = "https://docs.rs/pyo3-log"
readme = "README.md"
keywords = [
"pyo3",
"python",
"logging",
]
categories = ["development-tools::debugging"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/vorner/pyo3-log"
[dependencies.arc-swap]
version = "~1"
[dependencies.log]
version = "~0.4.4"
features = ["std"]
default-features = false
[dependencies.pyo3]
version = ">=0.21, <0.22"
default-features = false
[dev-dependencies.pyo3]
version = ">=0.21, <0.22"
features = [
"auto-initialize",
"macros",
]
default-features = false
[dev-dependencies.syn]
version = "~2.0.52"
|