forked from hove-io/transit_model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
80 lines (75 loc) · 1.85 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
[package]
authors = ["Kisio Digital <[email protected]>", "Guillaume Pinot <[email protected]>"]
name = "transit_model"
version = "0.35.0"
license = "AGPL-3.0-only"
description = "Transit data management"
repository = "https://github.com/CanalTP/transit_model"
keywords = ["ntfs", "gtfs", "netex", "navitia", "transit"]
categories = ["data-structures", "encoding", "parser-implementations"]
edition = "2018"
readme = "README.md"
exclude = [
".gitignore",
".mergify.yml",
"CONTRIBUTING.md",
"README.md",
"examples/",
"src/documentation/",
"tests/",
]
[workspace]
members = [
"gtfs2netexfr",
"gtfs2ntfs",
"ntfs2gtfs",
"ntfs2netexfr",
"model-builder",
"ntfs2ntfs",
"restrict-validity-period",
]
[features]
xmllint = ["proj"]
# Experimental feature, use at your own risks
mutable-model = []
[dependencies]
chrono = "0.4"
chrono-tz = { version = "0.5", features = ["serde"] }
csv = "1"
derivative = "2"
failure = "0.1"
geo = "0.14"
iso4217 = "0.3"
lazy_static = "1"
log = "0.4"
md5 = "0.7"
# do not upgrade to 'minidom:0.13.0' (too strict on namespaces and no XML comment support)
# https://github.com/CanalTP/transit_model/pull/746
minidom = "0.12"
minidom_ext = "1"
minidom_writer = "1"
num-traits = "0.2"
pretty_assertions = "0.6"
proj = { version = "0.19", optional = true }
quick-xml = "0.18"
relational_types = "1"
rust_decimal = "1"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
skip_error = { version = "1", features = ["log"] }
tempfile = "3"
thiserror = "1"
typed_index_collection = "1"
walkdir = "2"
wkt = "0.8"
zip = { version = "0.5", 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.3"
rust_decimal_macros = "1"
testing_logger = "0.1"
transit_model_builder = { path = "./model-builder"}