forked from hove-io/transit_model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
82 lines (77 loc) · 2.27 KB
/
Cargo.toml
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
[package]
authors = ["Hove <core@hove.com>", "Guillaume Pinot <texitoi@texitoi.eu>"]
name = "transit_model"
version = "0.57.1"
license = "AGPL-3.0-only"
description = "Transit data management"
repository = "https://github.com/hove-io/transit_model"
keywords = ["ntfs", "gtfs", "netex", "navitia", "transit"]
categories = ["data-structures", "encoding", "parser-implementations"]
edition = "2018"
readme = "README.md"
exclude = [
".gitignore",
".gitmodules",
"CONTRIBUTING.md",
"Dockerfile",
"Makefile",
"README.md",
"examples/",
"documentation/",
"tests/",
]
[workspace]
members = [
"gtfs2netexfr",
"gtfs2ntfs",
"ntfs2gtfs",
"ntfs2netexfr",
"model-builder",
"ntfs2ntfs",
"restrict-validity-period",
]
[features]
xmllint = ["proj"]
gtfs = []
parser = []
[dependencies]
anyhow = "1"
chrono = { version = "0.4", default-features = false, features = ["std", "clock"] }
chrono-tz = { version = "0.8", features = ["serde"] }
csv = "1"
derivative = "2"
geo = "0.25"
iso4217 = "0.3"
lazy_static = "1"
md5 = "0.7"
# do not upgrade to 'minidom:0.13.0' (too strict on namespaces and no XML comment support)
# https://github.com/hove-io/transit_model/pull/746
minidom = "0.12"
minidom_ext = { git = "https://github.com/hove-io/minidom_ext", tag="v1"}
minidom_writer = { git = "https://github.com/hove-io/minidom_writer", tag = "v1"}
num-traits = "0.2"
pretty_assertions = "1"
proj = { version = "0.25", optional = true } # libproj version used by 'proj' crate must be propagated to CI and makefile
relational_types = { git = "https://github.com/hove-io/relational_types", tag = "v2"}
rust_decimal = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
skip_error = { git = "https://github.com/hove-io/skip_error", tag = "v3", features = ["tracing"]}
tempfile = "3"
thiserror = "1"
tracing = { version = "0.1", features = ["log"] }
typed_index_collection = { git = "https://github.com/hove-io/typed_index_collection", tag = "v2"}
walkdir = "2"
wkt = "0.10"
zip = { version = "0.6", default-features = false, features = ["deflate"] }
git-version = "0.3"
[[test]]
name = "write_netex_france"
path = "tests/write_netex_france.rs"
required-features = ["proj"]
[dev-dependencies]
approx = "0.5"
log = "0.4"
rust_decimal_macros = "1"
testing_logger = "0.1"
transit_model_builder = { path = "./model-builder"}