known-countries 0.0.2

Well-known countries.
Documentation
# 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 = "2024"
rust-version = "1.85"
name = "known-countries"
version = "0.0.2"
authors = ["Arto Bendiken"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Well-known countries."
homepage = "https://github.com/it-is-known/known-countries"
readme = "README.md"
keywords = [
    "known",
    "country",
    "data",
]
categories = [
    "rust-patterns",
    "no-std",
]
license = "Unlicense"
repository = "https://github.com/it-is-known/known-countries"

[features]
all = []
alloc = []
borsh = ["dep:borsh"]
bson = ["dep:bson"]
default = [
    "all",
    "std",
]
serde = [
    "dep:serde",
    "dep:serde_json",
    "bson?/serde",
    "bson?/serde_json-1",
]
std = [
    "alloc",
    "borsh?/std",
    "serde?/std",
    "serde_json?/std",
]
unstable = []

[lib]
name = "known_countries"
path = "src/lib.rs"

[dependencies.borsh]
version = "1.6"
features = ["derive"]
optional = true
default-features = false

[dependencies.bson]
version = "3.1"
features = ["compat-3-0-0"]
optional = true
default-features = false

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true
default-features = false

[dependencies.serde_json]
version = "1"
features = []
optional = true
default-features = false

[dev-dependencies]